summaryrefslogtreecommitdiffstats
path: root/Lib/asyncore.py
Commit message (Expand)AuthorAgeFilesLines
* fix #10340: properly handle EINVAL on OSX and also avoid to call handle_conne...Giampaolo Rodola'2012-03-221-8/+9
* Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr.Giampaolo Rodola'2012-03-201-0/+1
* Merge - Issue #12502: asyncore: fix polling loop with AF_UNIX sockets.Charles-François Natali2011-07-141-2/+4
* Merged revisions 88726 via svnmerge fromGiampaolo Rodolà2011-03-031-1/+2
* Merged revisions 88722 via svnmerge fromGiampaolo Rodolà2011-03-031-4/+5
* reverting r88395 and r88387 as per http://mail.python.org/pipermail/python-de...Giampaolo Rodolà2011-02-111-11/+12
* asyncore: introduce a new 'closed' attribute to make sure that dispatcher get...Giampaolo Rodolà2011-02-111-9/+11
* get rid of asyncore.dispatcher's debug attribute, which is no longer used (as...Giampaolo Rodolà2011-02-101-3/+0
* Fix issue 6706: adds new handle_accepted() method to asyncore.dispatcherGiampaolo Rodolà2010-10-041-4/+13
* rename DISCONNECTED global constant in _DISCONNECTEDGiampaolo Rodolà2010-09-151-3/+3
* Store all errors signaling a disconnection into a global frozenset to save so...Giampaolo Rodolà2010-09-151-2/+4
* fix issue 658749: correctly interprets asyncore's windows errors on connect()Giampaolo Rodolà2010-08-231-3/+3
* fix issue #2944: asyncore doesn't handle connection refused correctly (patch ...Giampaolo Rodolà2010-08-041-1/+4
* #9354: Provide getsockopt() in asyncore file_wrapper(). Patch by Lukas Langa.Georg Brandl2010-07-281-0/+8
* Merged revisions 81294 via svnmerge fromGiampaolo Rodolà2010-05-181-2/+2
* Merged revisions 80880 via svnmerge fromGiampaolo Rodolà2010-05-061-2/+3
* Merged revisions 80875 via svnmerge fromGiampaolo Rodolà2010-05-061-5/+19
* This fixes bug 5798 on OS X.Josiah Carlson2009-06-031-2/+7
* Merged revisions 70873,70904,70934,71490 via svnmerge fromR. David Murray2009-04-121-27/+25
* This fixes issue 4332 for Py3k.Josiah Carlson2008-11-191-1/+1
* Merged revisions 65152 via svnmerge fromGeorg Brandl2008-07-201-9/+9
* Fix for AttributeError in test_asynchat.Josiah Carlson2008-07-111-1/+1
* Fixed bugs 760475, 953599, and 1519. This is a translation of changelist 64768Josiah Carlson2008-07-071-2/+4
* Committing Py3k version of changelist 64080 and 64257, along with updated testsJosiah Carlson2008-07-071-54/+119
* Fix exception slicing.Georg Brandl2008-01-061-3/+3
* In followup to #1310: Remove more exception indexing.Georg Brandl2007-10-221-2/+2
* Raise statement normalization in Lib/.Collin Winter2007-08-301-1/+1
* Fix test_asyncore after merge. It needs to use bytes.Guido van Rossum2007-07-181-3/+4
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-5/+5
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-1/+1
* 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