Kaydet (Commit) 70d566be authored tarafından Fred Drake's avatar Fred Drake

Extract the errno value to use from the errno module if possible.

üst 24ccca15
......@@ -54,6 +54,11 @@ except ImportError:
import os, sys
try:
from errno import EBADF
except ImportError:
EBADF = 9
__all__ = ["getfqdn"]
__all__.extend(os._get_exports_list(_socket))
if _have_ssl:
......@@ -137,7 +142,7 @@ _socketmethods = (
class _closedsocket(object):
__slots__ = []
def _dummy(*args):
raise error(9, 'Bad file descriptor')
raise error(EBADF, 'Bad file descriptor')
send = recv = sendto = recvfrom = __getattr__ = _dummy
class _socketobject(object):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment