We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40f5c74 commit 1dbf393Copy full SHA for 1dbf393
tests/basics/fun_callstardblstar.py
@@ -34,3 +34,6 @@ def f2(*args, **kwargs):
34
35
36
f2(*iter(range(4)), **{'a': 1})
37
+
38
+# case where *args is not a tuple/list and takes up most of the memory allocated for **kwargs
39
+f2(*iter(range(100)), **{str(i): i for i in range(100)})
0 commit comments