From 9dacf430c2f4af2acd870291a649b7b957efcd2c Mon Sep 17 00:00:00 2001 From: sobolevn Date: Sat, 14 Sep 2024 16:14:45 +0300 Subject: Remove unused `_allowed_types` from `typing.py` (#124090) --- Lib/typing.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Lib/typing.py b/Lib/typing.py index bcb7bec..9377e77 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -29,7 +29,7 @@ import functools import operator import sys import types -from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType, GenericAlias +from types import GenericAlias from _typing import ( _idfunc, @@ -2352,11 +2352,6 @@ def assert_type(val, typ, /): return val -_allowed_types = (types.FunctionType, types.BuiltinFunctionType, - types.MethodType, types.ModuleType, - WrapperDescriptorType, MethodWrapperType, MethodDescriptorType) - - def get_type_hints(obj, globalns=None, localns=None, include_extras=False, *, format=annotationlib.Format.VALUE): """Return type hints for an object. -- cgit v0.12