summaryrefslogtreecommitdiffstats
path: root/Lib/typing.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-03-16 13:05:38 (GMT)
committerGitHub <noreply@github.com>2023-03-16 13:05:38 (GMT)
commita297d59609038ccfc3bdf6f350e8401f07b0a931 (patch)
treed5db42d8f702806d7e34981195d0613f68471923 /Lib/typing.py
parent51d693c58454a2c525094a7c74ebac86859353fd (diff)
downloadcpython-a297d59609038ccfc3bdf6f350e8401f07b0a931.zip
cpython-a297d59609038ccfc3bdf6f350e8401f07b0a931.tar.gz
cpython-a297d59609038ccfc3bdf6f350e8401f07b0a931.tar.bz2
Add comments to `{typing,_collections_abc}._type_repr` about each other (#102752)
Remove `if` condition in `_collections_abc._type_repr` that's no longer needed, bringing it in sync with `typing._type_repr`.
Diffstat (limited to 'Lib/typing.py')
-rw-r--r--Lib/typing.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/typing.py b/Lib/typing.py
index ab33439..3ee9679 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -230,6 +230,9 @@ def _type_repr(obj):
typically enough to uniquely identify a type. For everything
else, we fall back on repr(obj).
"""
+ # When changing this function, don't forget about
+ # `_collections_abc._type_repr`, which does the same thing
+ # and must be consistent with this one.
if isinstance(obj, type):
if obj.__module__ == 'builtins':
return obj.__qualname__