diff options
Diffstat (limited to 'Lib')
-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)) |