tests/basics/fun_callstardblstar: Add test for large arg allocation.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
40f5c743db
commit
1dbf393962
|
@ -34,3 +34,6 @@ def f2(*args, **kwargs):
|
|||
|
||||
|
||||
f2(*iter(range(4)), **{'a': 1})
|
||||
|
||||
# case where *args is not a tuple/list and takes up most of the memory allocated for **kwargs
|
||||
f2(*iter(range(100)), **{str(i): i for i in range(100)})
|
||||
|
|
Loading…
Reference in New Issue