summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
diff options
context:
space:
mode:
authorGouvernathor <44340603+Gouvernathor@users.noreply.github.com>2023-03-04 15:08:57 (GMT)
committerGitHub <noreply@github.com>2023-03-04 15:08:57 (GMT)
commit90801e48fdd2a57c5c5a5e202ff76c3a7dc42a50 (patch)
tree75ae17280262c19ca440aaa9314bc928d928e4e6 /Lib/inspect.py
parentc2bd55d26f8eb2850eb9f9026b5d7f0ed1420b65 (diff)
downloadcpython-90801e48fdd2a57c5c5a5e202ff76c3a7dc42a50.zip
cpython-90801e48fdd2a57c5c5a5e202ff76c3a7dc42a50.tar.gz
cpython-90801e48fdd2a57c5c5a5e202ff76c3a7dc42a50.tar.bz2
gh-102302 Micro-optimize `inspect.Parameter.__hash__` (#102303)
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r--Lib/inspect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index 8bb3a37..166667c 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -2805,7 +2805,7 @@ class Parameter:
return '<{} "{}">'.format(self.__class__.__name__, self)
def __hash__(self):
- return hash((self.name, self.kind, self.annotation, self.default))
+ return hash((self._name, self._kind, self._annotation, self._default))
def __eq__(self, other):
if self is other: