summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnh71me <iyumelive@gmail.com>2022-10-07 18:23:06 (GMT)
committerGitHub <noreply@github.com>2022-10-07 18:23:06 (GMT)
commitd5fea01d9d439b1638cd8e5db19c33909841d86f (patch)
tree0be1fac1076f8ef77702a808ab4a1fa39a9814b7
parent676d8ef3806758bcd1d3fd84a746c8a9b64480d0 (diff)
downloadcpython-d5fea01d9d439b1638cd8e5db19c33909841d86f.zip
cpython-d5fea01d9d439b1638cd8e5db19c33909841d86f.tar.gz
cpython-d5fea01d9d439b1638cd8e5db19c33909841d86f.tar.bz2
GH-96073: Fix wild replacement in inspect.formatannotation (#96074)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
-rw-r--r--Lib/inspect.py5
-rw-r--r--Lib/test/test_inspect.py7
-rw-r--r--Lib/test/typinganndata/__init__.py0
-rw-r--r--Lib/test/typinganndata/ann_module9.py14
-rw-r--r--Misc/NEWS.d/next/Library/2022-08-29-12-35-28.gh-issue-96073.WaGstf.rst1
5 files changed, 26 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index 8a107a8..585875a 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -1433,7 +1433,10 @@ def getargvalues(frame):
def formatannotation(annotation, base_module=None):
if getattr(annotation, '__module__', None) == 'typing':
- return repr(annotation).replace('typing.', '')
+ def repl(match):
+ text = match.group()
+ return text.removeprefix('typing.')
+ return re.sub(r'[\w\.]+', repl, repr(annotation))
if isinstance(annotation, types.GenericAlias):
return str(annotation)
if isinstance(annotation, type):
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index 710b609..61fed32 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -1421,6 +1421,13 @@ class TestClassesAndFunctions(unittest.TestCase):
self.assertEqual(inspect.get_annotations(isa.MyClassWithLocalAnnotations, eval_str=True), {'x': int})
+class TestFormatAnnotation(unittest.TestCase):
+ def test_typing_replacement(self):
+ from test.typinganndata.ann_module9 import ann, ann1
+ self.assertEqual(inspect.formatannotation(ann), 'Union[List[str], int]')
+ self.assertEqual(inspect.formatannotation(ann1), 'Union[List[testModule.typing.A], int]')
+
+
class TestIsDataDescriptor(unittest.TestCase):
def test_custom_descriptors(self):
diff --git a/Lib/test/typinganndata/__init__.py b/Lib/test/typinganndata/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Lib/test/typinganndata/__init__.py
diff --git a/Lib/test/typinganndata/ann_module9.py b/Lib/test/typinganndata/ann_module9.py
new file mode 100644
index 0000000..9522173
--- /dev/null
+++ b/Lib/test/typinganndata/ann_module9.py
@@ -0,0 +1,14 @@
+# Test ``inspect.formatannotation``
+# https://github.com/python/cpython/issues/96073
+
+from typing import Union, List
+
+ann = Union[List[str], int]
+
+# mock typing._type_repr behaviour
+class A: ...
+
+A.__module__ = 'testModule.typing'
+A.__qualname__ = 'A'
+
+ann1 = Union[List[A], int]
diff --git a/Misc/NEWS.d/next/Library/2022-08-29-12-35-28.gh-issue-96073.WaGstf.rst b/Misc/NEWS.d/next/Library/2022-08-29-12-35-28.gh-issue-96073.WaGstf.rst
new file mode 100644
index 0000000..0e6dd8d
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-08-29-12-35-28.gh-issue-96073.WaGstf.rst
@@ -0,0 +1 @@
+In :mod:`inspect`, fix overeager replacement of "`typing.`" in formatting annotations.