summaryrefslogtreecommitdiff
path: root/Lib/asyncore.py
Commit message (Expand)AuthorAgeFilesLines
* No need to import exceptions, they are builtinsNeal Norwitz2005-09-011-2/+1
* [Bug #1011606] Only check file descriptors for exceptional conditions if the ...Andrew M. Kuchling2004-09-011-4/+10
* Back out patch #982681Andrew M. Kuchling2004-08-131-8/+2
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-2/+2
* [Patch #982681] Apply this patch correctly; makes set_reuse_addr() work on Wi...Andrew M. Kuchling2004-07-151-3/+9
* In poll(), check connections for exceptional conditionsAndrew M. Kuchling2004-07-101-0/+15
* Return value from .close(); move .set_file upAndrew M. Kuchling2004-07-101-2/+2
* Whitespace normalization.Tim Peters2004-07-071-4/+3
* For readable() objects, the previous value of 'flags' was ignored.Andrew M. Kuchling2004-07-071-2/+2
* Check in the updated version of patch #957240, which doesn't relyMichael W. Hudson2004-06-301-3/+10
* Back out #957240.Martin v. Löwis2004-06-141-3/+2
* Patch #957240: Add count parameter to asyncore.loop.Martin v. Löwis2004-06-031-2/+3
* [Part of patch #909005] Added map parameter for file_dispatcher and dispatche...Andrew M. Kuchling2004-03-211-4/+4
* [Part of patch #909005] Repeating exception changed from 'raise socket.error,...Andrew M. Kuchling2004-03-211-5/+5
* [Part of patch #909005] Remove Mac code for writableAndrew M. Kuchling2004-03-211-8/+2
* [Part of patch #909005] Set initial poll flagsAndrew M. Kuchling2004-03-211-2/+2
* [Part of patch #909005] Use True/FalseAndrew M. Kuchling2004-03-211-13/+13
* [Part of patch #909005] Handle POLLPRI flag, and various errors cases. Fixes...Andrew M. Kuchling2004-03-211-1/+3
* SF bug #892492: Multiple close() for asyncore.dispatcher.Raymond Hettinger2004-02-081-0/+1
* [Part of patch #648322] Delete the poll2() function, which uses a 'poll' exte...Andrew M. Kuchling2003-10-221-29/+4
* [Bug #758241] When you use asyncore with a non-default map, methodsAndrew M. Kuchling2003-10-221-2/+7
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Fix comment typoAndrew M. Kuchling2003-02-141-1/+1
* Add XXX about Winsock error valuesGuido van Rossum2002-12-261-0/+1
* Fix an old bug in poll(). When a signal is handled while we'reGuido van Rossum2002-11-051-0/+2
* Again, I did check in too many changes. Sorry.Thomas Heller2002-09-261-1/+1
* On Windows, select() does not accept empty lists.Thomas Heller2002-09-241-5/+9
* Fiddle with compact_traceback().Guido van Rossum2002-09-131-7/+6
* I don't think it's safe to use map.iteritems() in the various pollGuido van Rossum2002-09-121-103/+107
* A little refactoring.Jeremy Hylton2002-09-081-60/+46
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-2/+2
* Replace use of apply() with extended call syntax.Jeremy Hylton2002-04-041-2/+3
* Remove duplicate "import os"Neal Norwitz2002-03-141-1/+0
* [Bug #517554] When a signal happens during the select call inAndrew M. Kuchling2002-03-081-0/+1
* Partial fix for problem in SF buf #487458Jeremy Hylton2001-12-141-1/+7
* /F observes that we need an else: in connect()Jeremy Hylton2001-10-301-1/+2
* Use connect_ex() instead of connect().Jeremy Hylton2001-10-291-12/+9
* Fix for SF bug 453099 -- select not defensiveJeremy Hylton2001-10-291-5/+16
* Reindent __repr__.Martin v. Löwis2001-10-181-11/+11
* Patch #470744: Simplify __repr__ error handling.Martin v. Löwis2001-10-181-16/+4
* Correct __repr__: include module name, avoid extra space for empty status,Martin v. Löwis2001-10-121-3/+2
* Patch #468647: Fix exception propagation in asyncore.Martin v. Löwis2001-10-091-34/+38
* Set .addr in a few more places (patch approved by Sam Rushing)Andrew M. Kuchling2001-10-031-0/+2
* Patch #461321: Support None as a timeout in poll2 and poll3.Martin v. Löwis2001-09-191-4/+6
* Patch #460554: Properly test for tuples.Martin v. Löwis2001-09-111-1/+1
* Whitespace normalization.Tim Peters2001-08-201-1/+1
* Remove redundant assignment l = [] from poll3() -- copy-and-pasteGuido van Rossum2001-08-131-1/+0
* Remove hard-coded NT constants that are already defined in errno on NT.Jeremy Hylton2001-08-101-11/+5
* <socket>.getsockopt() and <socket>.setsockopt() can only raise socket.error,Fred Drake2001-05-111-1/+1
* Remove all remaining uses of the FCNTL module from the standard library.Fred Drake2001-05-101-4/+3