summaryrefslogtreecommitdiffstats
path: root/Lib/asyncore.py
Commit message (Collapse)AuthorAgeFilesLines
* <socket>.getsockopt() and <socket>.setsockopt() can only raise socket.error,Fred Drake2001-05-111-1/+1
| | | | so only catch that specific exception.
* Remove all remaining uses of the FCNTL module from the standard library.Fred Drake2001-05-101-4/+3
|
* Whitespace normalization.Tim Peters2001-05-021-1/+1
|
* dispatcher.__repr__() was unprepared to handle the address for a UnixJeremy Hylton2001-04-201-11/+16
| | | | | domain socket. Fix that and make the error message for failures a little more helpful by including the class name.
* String method conversion.Eric S. Raymond2001-02-091-9/+2
|
* Updated version of asyncore.py from Sam Rushing:Andrew M. Kuchling2001-01-241-4/+40
| | | | | | Adds support for using select.poll() if it's available Move a 'map is None' test out of an else branch and into the right place
* Whitespace standardization.Tim Peters2001-01-141-11/+11
|
* Untabify. When compiling in -tt mode, an inconsistent Tab use errorFred Drake2000-09-111-408/+407
| | | | was raised. This occurred during installation.
* Match Sam Rushing's current version of asyncore.py and asynchat.pyAndrew M. Kuchling2000-09-081-77/+119
| | | | (SF patch 101447, fixing PR#113704)
* Fix a couple broken append() calls, spotted by Tim.Guido van Rossum2000-02-251-4/+4
|
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-0/+21
| | | | | | | | | | *this* set of patches is Ka-Ping's final sweep: The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac.
* Put Sam Rushing's original RCS ID string back, without dollars around it.Guido van Rossum1999-09-141-1/+1
|
* Sam's latest versionsGuido van Rossum1999-06-081-48/+48
|
* A gift from Sam Rushing - modules asyncore and asynchat for theGuido van Rossum1999-01-121-0/+453
standard Python library. (Async socket support.)