Skip to content

Commit 255eb37

Browse files
gh-118761: Defer import of functools in annotationlib (#132059)
1 parent a126cef commit 255eb37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/annotationlib.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import ast
44
import builtins
55
import enum
6-
import functools
76
import keyword
87
import sys
98
import types
@@ -765,9 +764,10 @@ def get_annotations(
765764
if hasattr(unwrap, "__wrapped__"):
766765
unwrap = unwrap.__wrapped__
767766
continue
768-
if isinstance(unwrap, functools.partial):
769-
unwrap = unwrap.func
770-
continue
767+
if functools := sys.modules.get("functools"):
768+
if isinstance(unwrap, functools.partial):
769+
unwrap = unwrap.func
770+
continue
771771
break
772772
if hasattr(unwrap, "__globals__"):
773773
obj_globals = unwrap.__globals__

0 commit comments

Comments
 (0)