Skip to content

Commit

Permalink
More DRY
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed Jul 1, 2023
1 parent 9cb50cb commit 826e68d
Showing 1 changed file with 30 additions and 33 deletions.
63 changes: 30 additions & 33 deletions src/typing_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,6 @@
'no_type_check_decorator',
]

_OLD_PYPY_VERSION = sys.implementation.name == "pypy" and sys.version_info < (3, 9)

# for backward compatibility
PEP_560 = True
GenericMeta = type
Expand Down Expand Up @@ -955,6 +953,21 @@ def __round__(self, ndigits: int = 0) -> T_co:
pass


def _ensure_subclassable(mro_entries):
def inner(func):
if sys.implementation.name == "pypy" and sys.version_info < (3, 9):
cls_dict = {
"__call__": staticmethod(func),
"__mro_entries__": staticmethod(mro_entries)
}
t = type(func.__name__, (), cls_dict)
return functools.update_wrapper(t(), func)
else:
func.__mro_entries__ = mro_entries
return func
return inner


if sys.version_info >= (3, 13):
# The standard library TypedDict in Python 3.8 does not store runtime information
# about which (if any) keys are optional. See https://bugs.python.org/issue38834
Expand Down Expand Up @@ -1061,6 +1074,9 @@ def __subclasscheck__(cls, other):

__instancecheck__ = __subclasscheck__

_TypedDict = type.__new__(_TypedDictMeta, 'TypedDict', (), {})

@_ensure_subclassable(lambda bases: (_TypedDict,))
def TypedDict(__typename, __fields=_marker, *, total=True, **kwargs):
"""A simple typed namespace. At runtime it is equivalent to a plain dict.
Expand Down Expand Up @@ -1144,20 +1160,6 @@ class Point2D(TypedDict):
td.__orig_bases__ = (TypedDict,)
return td

_TypedDict = type.__new__(_TypedDictMeta, 'TypedDict', (), {})

if _OLD_PYPY_VERSION:
class _TypedDictType:
__call__ = staticmethod(TypedDict)

def __mro_entries__(self, bases):
return (_TypedDict,)

TypedDict = _TypedDictType()
functools.update_wrapper(TypedDict, TypedDict.__call__)
else:
TypedDict.__mro_entries__ = lambda bases: (_TypedDict,)

if hasattr(typing, "_TypedDictMeta"):
_TYPEDDICT_TYPES = (typing._TypedDictMeta, _TypedDictMeta)
else:
Expand Down Expand Up @@ -2646,6 +2648,13 @@ def __new__(cls, typename, bases, ns):
nm_tpl.__init_subclass__()
return nm_tpl

_NamedTuple = type.__new__(_NamedTupleMeta, 'NamedTuple', (), {})

def _namedtuple_mro_entries(bases):
assert NamedTuple in bases
return (_NamedTuple,)

@_ensure_subclassable(_namedtuple_mro_entries)
def NamedTuple(__typename, __fields=_marker, **kwargs):
"""Typed version of namedtuple.
Expand Down Expand Up @@ -2711,27 +2720,15 @@ class Employee(NamedTuple):
nt.__orig_bases__ = (NamedTuple,)
return nt

_NamedTuple = type.__new__(_NamedTupleMeta, 'NamedTuple', (), {})

# On 3.8+, alter the signature so that it matches typing.NamedTuple.
# The signature of typing.NamedTuple on >=3.8 is invalid syntax in Python 3.7,
# so just leave the signature as it is on 3.7.
if sys.version_info >= (3, 8):
NamedTuple.__text_signature__ = '(typename, fields=None, /, **kwargs)'

def _namedtuple_mro_entries(bases):
assert NamedTuple in bases
return (_NamedTuple,)

if _OLD_PYPY_VERSION:
class _NamedTupleType:
__call__ = staticmethod(NamedTuple)
__mro_entries__ = staticmethod(_namedtuple_mro_entries)

NamedTuple = _NamedTupleType()
functools.update_wrapper(NamedTuple, NamedTuple.__call__)
else:
NamedTuple.__mro_entries__ = _namedtuple_mro_entries
_new_signature = '(typename, fields=None, /, **kwargs)'
if isinstance(NamedTuple, _types.FunctionType):
NamedTuple.__text_signature__ = _new_signature
else:
NamedTuple.__call__.__text_signature__ = _new_signature


if hasattr(collections.abc, "Buffer"):
Expand Down

0 comments on commit 826e68d

Please sign in to comment.