Update six.py

This commit is contained in:
Clinton Hall 2024-02-27 21:30:11 +13:00 committed by GitHub
commit 3ec9314819
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -263,7 +263,7 @@ _moved_attributes = [
MovedAttribute("reduce", "__builtin__", "functools"),
MovedAttribute("shlex_quote", "pipes", "shlex", "quote"),
MovedAttribute("StringIO", "StringIO", "io"),
MovedAttribute("UserDict", "UserDict", "collections"),
MovedAttribute("UserDict", "UserDict", "collections", "IterableUserDict", "UserDict"),
MovedAttribute("UserList", "UserList", "collections"),
MovedAttribute("UserString", "UserString", "collections"),
MovedAttribute("xrange", "__builtin__", "builtins", "xrange", "range"),
@ -363,6 +363,8 @@ _urllib_parse_moved_attributes = [
MovedAttribute("splittag", "urllib", "urllib.parse"),
MovedAttribute("splituser", "urllib", "urllib.parse"),
MovedAttribute("splitvalue", "urllib", "urllib.parse"),
MovedAttribute("splittype", "urllib", "urllib.parse"),
MovedAttribute("splithost", "urllib", "urllib.parse"),
MovedAttribute("uses_fragment", "urlparse", "urllib.parse"),
MovedAttribute("uses_netloc", "urlparse", "urllib.parse"),
MovedAttribute("uses_params", "urlparse", "urllib.parse"),
@ -531,6 +533,7 @@ if PY3:
_func_code = "__code__"
_func_defaults = "__defaults__"
_func_globals = "__globals__"
_func_name = "__name__"
else:
_meth_func = "im_func"
_meth_self = "im_self"
@ -539,6 +542,7 @@ else:
_func_code = "func_code"
_func_defaults = "func_defaults"
_func_globals = "func_globals"
_func_name = "func_name"
try:
@ -592,6 +596,7 @@ get_function_closure = operator.attrgetter(_func_closure)
get_function_code = operator.attrgetter(_func_code)
get_function_defaults = operator.attrgetter(_func_defaults)
get_function_globals = operator.attrgetter(_func_globals)
get_function_name = operator.attrgetter(_func_name)
if PY3: