mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-03 20:31:35 +00:00
six.py 1.11.0
This commit is contained in:
35
src/six.py
35
src/six.py
@@ -1,6 +1,4 @@
|
|||||||
"""Utilities for writing code that runs on Python 2 and 3"""
|
# Copyright (c) 2010-2017 Benjamin Peterson
|
||||||
|
|
||||||
# Copyright (c) 2010-2015 Benjamin Peterson
|
|
||||||
#
|
#
|
||||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
# of this software and associated documentation files (the "Software"), to deal
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
@@ -20,6 +18,8 @@
|
|||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
# SOFTWARE.
|
# SOFTWARE.
|
||||||
|
|
||||||
|
"""Utilities for writing code that runs on Python 2 and 3"""
|
||||||
|
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
import functools
|
import functools
|
||||||
@@ -29,7 +29,7 @@ import sys
|
|||||||
import types
|
import types
|
||||||
|
|
||||||
__author__ = "Benjamin Peterson <benjamin@python.org>"
|
__author__ = "Benjamin Peterson <benjamin@python.org>"
|
||||||
__version__ = "1.10.0"
|
__version__ = "1.11.0"
|
||||||
|
|
||||||
|
|
||||||
# Useful for very coarse version differentiation.
|
# Useful for very coarse version differentiation.
|
||||||
@@ -241,6 +241,7 @@ _moved_attributes = [
|
|||||||
MovedAttribute("map", "itertools", "builtins", "imap", "map"),
|
MovedAttribute("map", "itertools", "builtins", "imap", "map"),
|
||||||
MovedAttribute("getcwd", "os", "os", "getcwdu", "getcwd"),
|
MovedAttribute("getcwd", "os", "os", "getcwdu", "getcwd"),
|
||||||
MovedAttribute("getcwdb", "os", "os", "getcwd", "getcwdb"),
|
MovedAttribute("getcwdb", "os", "os", "getcwd", "getcwdb"),
|
||||||
|
MovedAttribute("getoutput", "commands", "subprocess"),
|
||||||
MovedAttribute("range", "__builtin__", "builtins", "xrange", "range"),
|
MovedAttribute("range", "__builtin__", "builtins", "xrange", "range"),
|
||||||
MovedAttribute("reload_module", "__builtin__", "importlib" if PY34 else "imp", "reload"),
|
MovedAttribute("reload_module", "__builtin__", "importlib" if PY34 else "imp", "reload"),
|
||||||
MovedAttribute("reduce", "__builtin__", "functools"),
|
MovedAttribute("reduce", "__builtin__", "functools"),
|
||||||
@@ -262,10 +263,11 @@ _moved_attributes = [
|
|||||||
MovedModule("html_entities", "htmlentitydefs", "html.entities"),
|
MovedModule("html_entities", "htmlentitydefs", "html.entities"),
|
||||||
MovedModule("html_parser", "HTMLParser", "html.parser"),
|
MovedModule("html_parser", "HTMLParser", "html.parser"),
|
||||||
MovedModule("http_client", "httplib", "http.client"),
|
MovedModule("http_client", "httplib", "http.client"),
|
||||||
|
MovedModule("email_mime_base", "email.MIMEBase", "email.mime.base"),
|
||||||
|
MovedModule("email_mime_image", "email.MIMEImage", "email.mime.image"),
|
||||||
MovedModule("email_mime_multipart", "email.MIMEMultipart", "email.mime.multipart"),
|
MovedModule("email_mime_multipart", "email.MIMEMultipart", "email.mime.multipart"),
|
||||||
MovedModule("email_mime_nonmultipart", "email.MIMENonMultipart", "email.mime.nonmultipart"),
|
MovedModule("email_mime_nonmultipart", "email.MIMENonMultipart", "email.mime.nonmultipart"),
|
||||||
MovedModule("email_mime_text", "email.MIMEText", "email.mime.text"),
|
MovedModule("email_mime_text", "email.MIMEText", "email.mime.text"),
|
||||||
MovedModule("email_mime_base", "email.MIMEBase", "email.mime.base"),
|
|
||||||
MovedModule("BaseHTTPServer", "BaseHTTPServer", "http.server"),
|
MovedModule("BaseHTTPServer", "BaseHTTPServer", "http.server"),
|
||||||
MovedModule("CGIHTTPServer", "CGIHTTPServer", "http.server"),
|
MovedModule("CGIHTTPServer", "CGIHTTPServer", "http.server"),
|
||||||
MovedModule("SimpleHTTPServer", "SimpleHTTPServer", "http.server"),
|
MovedModule("SimpleHTTPServer", "SimpleHTTPServer", "http.server"),
|
||||||
@@ -337,10 +339,12 @@ _urllib_parse_moved_attributes = [
|
|||||||
MovedAttribute("quote_plus", "urllib", "urllib.parse"),
|
MovedAttribute("quote_plus", "urllib", "urllib.parse"),
|
||||||
MovedAttribute("unquote", "urllib", "urllib.parse"),
|
MovedAttribute("unquote", "urllib", "urllib.parse"),
|
||||||
MovedAttribute("unquote_plus", "urllib", "urllib.parse"),
|
MovedAttribute("unquote_plus", "urllib", "urllib.parse"),
|
||||||
|
MovedAttribute("unquote_to_bytes", "urllib", "urllib.parse", "unquote", "unquote_to_bytes"),
|
||||||
MovedAttribute("urlencode", "urllib", "urllib.parse"),
|
MovedAttribute("urlencode", "urllib", "urllib.parse"),
|
||||||
MovedAttribute("splitquery", "urllib", "urllib.parse"),
|
MovedAttribute("splitquery", "urllib", "urllib.parse"),
|
||||||
MovedAttribute("splittag", "urllib", "urllib.parse"),
|
MovedAttribute("splittag", "urllib", "urllib.parse"),
|
||||||
MovedAttribute("splituser", "urllib", "urllib.parse"),
|
MovedAttribute("splituser", "urllib", "urllib.parse"),
|
||||||
|
MovedAttribute("splitvalue", "urllib", "urllib.parse"),
|
||||||
MovedAttribute("uses_fragment", "urlparse", "urllib.parse"),
|
MovedAttribute("uses_fragment", "urlparse", "urllib.parse"),
|
||||||
MovedAttribute("uses_netloc", "urlparse", "urllib.parse"),
|
MovedAttribute("uses_netloc", "urlparse", "urllib.parse"),
|
||||||
MovedAttribute("uses_params", "urlparse", "urllib.parse"),
|
MovedAttribute("uses_params", "urlparse", "urllib.parse"),
|
||||||
@@ -416,6 +420,8 @@ _urllib_request_moved_attributes = [
|
|||||||
MovedAttribute("URLopener", "urllib", "urllib.request"),
|
MovedAttribute("URLopener", "urllib", "urllib.request"),
|
||||||
MovedAttribute("FancyURLopener", "urllib", "urllib.request"),
|
MovedAttribute("FancyURLopener", "urllib", "urllib.request"),
|
||||||
MovedAttribute("proxy_bypass", "urllib", "urllib.request"),
|
MovedAttribute("proxy_bypass", "urllib", "urllib.request"),
|
||||||
|
MovedAttribute("parse_http_list", "urllib2", "urllib.request"),
|
||||||
|
MovedAttribute("parse_keqv_list", "urllib2", "urllib.request"),
|
||||||
]
|
]
|
||||||
for attr in _urllib_request_moved_attributes:
|
for attr in _urllib_request_moved_attributes:
|
||||||
setattr(Module_six_moves_urllib_request, attr.name, attr)
|
setattr(Module_six_moves_urllib_request, attr.name, attr)
|
||||||
@@ -679,11 +685,15 @@ if PY3:
|
|||||||
exec_ = getattr(moves.builtins, "exec")
|
exec_ = getattr(moves.builtins, "exec")
|
||||||
|
|
||||||
def reraise(tp, value, tb=None):
|
def reraise(tp, value, tb=None):
|
||||||
|
try:
|
||||||
if value is None:
|
if value is None:
|
||||||
value = tp()
|
value = tp()
|
||||||
if value.__traceback__ is not tb:
|
if value.__traceback__ is not tb:
|
||||||
raise value.with_traceback(tb)
|
raise value.with_traceback(tb)
|
||||||
raise value
|
raise value
|
||||||
|
finally:
|
||||||
|
value = None
|
||||||
|
tb = None
|
||||||
|
|
||||||
else:
|
else:
|
||||||
def exec_(_code_, _globs_=None, _locs_=None):
|
def exec_(_code_, _globs_=None, _locs_=None):
|
||||||
@@ -699,19 +709,28 @@ else:
|
|||||||
exec("""exec _code_ in _globs_, _locs_""")
|
exec("""exec _code_ in _globs_, _locs_""")
|
||||||
|
|
||||||
exec_("""def reraise(tp, value, tb=None):
|
exec_("""def reraise(tp, value, tb=None):
|
||||||
|
try:
|
||||||
raise tp, value, tb
|
raise tp, value, tb
|
||||||
|
finally:
|
||||||
|
tb = None
|
||||||
""")
|
""")
|
||||||
|
|
||||||
|
|
||||||
if sys.version_info[:2] == (3, 2):
|
if sys.version_info[:2] == (3, 2):
|
||||||
exec_("""def raise_from(value, from_value):
|
exec_("""def raise_from(value, from_value):
|
||||||
|
try:
|
||||||
if from_value is None:
|
if from_value is None:
|
||||||
raise value
|
raise value
|
||||||
raise value from from_value
|
raise value from from_value
|
||||||
|
finally:
|
||||||
|
value = None
|
||||||
""")
|
""")
|
||||||
elif sys.version_info[:2] > (3, 2):
|
elif sys.version_info[:2] > (3, 2):
|
||||||
exec_("""def raise_from(value, from_value):
|
exec_("""def raise_from(value, from_value):
|
||||||
|
try:
|
||||||
raise value from from_value
|
raise value from from_value
|
||||||
|
finally:
|
||||||
|
value = None
|
||||||
""")
|
""")
|
||||||
else:
|
else:
|
||||||
def raise_from(value, from_value):
|
def raise_from(value, from_value):
|
||||||
@@ -802,10 +821,14 @@ def with_metaclass(meta, *bases):
|
|||||||
# This requires a bit of explanation: the basic idea is to make a dummy
|
# This requires a bit of explanation: the basic idea is to make a dummy
|
||||||
# metaclass for one level of class instantiation that replaces itself with
|
# metaclass for one level of class instantiation that replaces itself with
|
||||||
# the actual metaclass.
|
# the actual metaclass.
|
||||||
class metaclass(meta):
|
class metaclass(type):
|
||||||
|
|
||||||
def __new__(cls, name, this_bases, d):
|
def __new__(cls, name, this_bases, d):
|
||||||
return meta(name, bases, d)
|
return meta(name, bases, d)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def __prepare__(cls, name, this_bases):
|
||||||
|
return meta.__prepare__(name, bases)
|
||||||
return type.__new__(metaclass, 'temporary_class', (), {})
|
return type.__new__(metaclass, 'temporary_class', (), {})
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user