[Python-checkins] r84830 - python/branches/py3k/Lib/socket.py

antoine.pitrou python-checkins at python.org
Wed Sep 15 13:12:57 CEST 2010


Author: antoine.pitrou
Date: Wed Sep 15 13:12:57 2010
New Revision: 84830

Log:
Reverted unwanted change in r84826



Modified:
   python/branches/py3k/Lib/socket.py

Modified: python/branches/py3k/Lib/socket.py
==============================================================================
--- python/branches/py3k/Lib/socket.py	(original)
+++ python/branches/py3k/Lib/socket.py	Wed Sep 15 13:12:57 2010
@@ -54,8 +54,6 @@
     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))


More information about the Python-checkins mailing list