summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-08-02 07:08:24 (GMT)
committerGitHub <noreply@github.com>2021-08-02 07:08:24 (GMT)
commitc8db292012dd84aab81eb3ed9146709696a3d290 (patch)
tree0498ea32c9bf6ec748b2b06ad083684210e00317
parentb192fb3f6a99c33f664e27395ffc0cef4dbc8d29 (diff)
downloadcpython-c8db292012dd84aab81eb3ed9146709696a3d290.zip
cpython-c8db292012dd84aab81eb3ed9146709696a3d290.tar.gz
cpython-c8db292012dd84aab81eb3ed9146709696a3d290.tar.bz2
bpo-44793: Fix checking the number of arguments when subscribe a generic type with ParamSpec parameter. (GH-27515)
For example Callable[P, T][[int], str, float] will now raise an error. Use also term "arguments" instead of "parameters" in error message for too few/many arguments. (cherry picked from commit f92b9133ef67e77605cbd315b6b6c81036ce110e) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
-rw-r--r--Lib/test/test_typing.py6
-rw-r--r--Lib/typing.py15
-rw-r--r--Misc/NEWS.d/next/Library/2021-07-31-20-28-20.bpo-44793.woaQSg.rst2
3 files changed, 15 insertions, 8 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py
index 029a158..3d9a347 100644
--- a/Lib/test/test_typing.py
+++ b/Lib/test/test_typing.py
@@ -620,8 +620,6 @@ class TypingCallableTests(BaseCallableTests, BaseTestCase):
self.assertEqual(c1.__args__, c2.__args__)
self.assertEqual(hash(c1.__args__), hash(c2.__args__))
- test_errors = skip("known bug #44793")(BaseCallableTests.test_errors)
-
class CollectionsCallableTests(BaseCallableTests, BaseTestCase):
Callable = collections.abc.Callable
@@ -4548,6 +4546,10 @@ class ParamSpecTests(BaseTestCase):
G1 = X[int, P_2]
self.assertEqual(G1.__args__, (int, P_2))
self.assertEqual(G1.__parameters__, (P_2,))
+ with self.assertRaisesRegex(TypeError, "few arguments for"):
+ X[int]
+ with self.assertRaisesRegex(TypeError, "many arguments for"):
+ X[int, P_2, str]
G2 = X[int, Concatenate[int, P_2]]
self.assertEqual(G2.__args__, (int, Concatenate[int, P_2]))
diff --git a/Lib/typing.py b/Lib/typing.py
index bcb22b2..e492bd2 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -220,7 +220,7 @@ def _check_generic(cls, parameters, elen):
raise TypeError(f"{cls} is not a generic class")
alen = len(parameters)
if alen != elen:
- raise TypeError(f"Too {'many' if alen > elen else 'few'} parameters for {cls};"
+ raise TypeError(f"Too {'many' if alen > elen else 'few'} arguments for {cls};"
f" actual {alen}, expected {elen}")
def _prepare_paramspec_params(cls, params):
@@ -231,6 +231,7 @@ def _prepare_paramspec_params(cls, params):
if len(cls.__parameters__) == 1 and len(params) > 1:
return (params,)
else:
+ _check_generic(cls, params, len(cls.__parameters__))
_params = []
# Convert lists to tuples to help other libraries cache the results.
for p, tvar in zip(params, cls.__parameters__):
@@ -1020,10 +1021,11 @@ class _GenericAlias(_BaseGenericAlias, _root=True):
if not isinstance(params, tuple):
params = (params,)
params = tuple(_type_convert(p) for p in params)
- if self._paramspec_tvars:
- if any(isinstance(t, ParamSpec) for t in self.__parameters__):
- params = _prepare_paramspec_params(self, params)
- _check_generic(self, params, len(self.__parameters__))
+ if (self._paramspec_tvars
+ and any(isinstance(t, ParamSpec) for t in self.__parameters__)):
+ params = _prepare_paramspec_params(self, params)
+ else:
+ _check_generic(self, params, len(self.__parameters__))
subst = dict(zip(self.__parameters__, params))
new_args = []
@@ -1290,7 +1292,8 @@ class Generic:
# Subscripting a regular Generic subclass.
if any(isinstance(t, ParamSpec) for t in cls.__parameters__):
params = _prepare_paramspec_params(cls, params)
- _check_generic(cls, params, len(cls.__parameters__))
+ else:
+ _check_generic(cls, params, len(cls.__parameters__))
return _GenericAlias(cls, params,
_typevar_types=(TypeVar, ParamSpec),
_paramspec_tvars=True)
diff --git a/Misc/NEWS.d/next/Library/2021-07-31-20-28-20.bpo-44793.woaQSg.rst b/Misc/NEWS.d/next/Library/2021-07-31-20-28-20.bpo-44793.woaQSg.rst
new file mode 100644
index 0000000..1d94d67
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-07-31-20-28-20.bpo-44793.woaQSg.rst
@@ -0,0 +1,2 @@
+Fix checking the number of arguments when subscribe a generic type with
+``ParamSpec`` parameter.