diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-15 11:12:57 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-15 11:12:57 (GMT) |
commit | 8dd2387a609d02f28d7cd9052d8d5eb98197a8f2 (patch) | |
tree | a917f462295306d6ba3d3a97a2a0c91efb7e9b9a /Lib/socket.py | |
parent | 11cb961b38550443d287b2b55174e504c2309af2 (diff) | |
download | cpython-8dd2387a609d02f28d7cd9052d8d5eb98197a8f2.zip cpython-8dd2387a609d02f28d7cd9052d8d5eb98197a8f2.tar.gz cpython-8dd2387a609d02f28d7cd9052d8d5eb98197a8f2.tar.bz2 |
Reverted unwanted change in r84826
Diffstat (limited to 'Lib/socket.py')
-rw-r--r-- | Lib/socket.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/socket.py b/Lib/socket.py index 0d7a94c..dbb7cca 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -54,8 +54,6 @@ except ImportError: errno = None EBADF = getattr(errno, 'EBADF', 9) EINTR = getattr(errno, 'EINTR', 4) -EAGAIN = getattr(errno, 'EAGAIN', 11) -EWOULDBLOCK = getattr(errno, 'EWOULDBLOCK', 11) __all__ = ["getfqdn", "create_connection"] __all__.extend(os._get_exports_list(_socket)) |