]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-43224: Add TypeVarTuple.__name__ (GH-31954)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Fri, 18 Mar 2022 17:56:36 +0000 (10:56 -0700)
committerGitHub <noreply@github.com>
Fri, 18 Mar 2022 17:56:36 +0000 (10:56 -0700)
commit3a2b89580ded72262fbea0f7ad24096a90c42b9c
tree21941d20291148e508cf4755031ec34e1fe7986d
parentd0a91bd277d1122b41d59e8022b596e3b3ae24fe
bpo-43224: Add TypeVarTuple.__name__ (GH-31954)

I noticed that TypeVar and ParamSpec put their name in a __name__
attribute, but TypeVarTuple doesn't. Let's be consistent.
Lib/test/test_typing.py
Lib/typing.py