mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
Extends previous implementation with * for function calls to * and ** for both function and method calls.
18 lines
316 B
Python
18 lines
316 B
Python
# test calling a function with keywords given by **dict
|
|
|
|
def f(a, b):
|
|
print(a, b)
|
|
|
|
f(1, **{'b':2})
|
|
f(1, **{'b':val for val in range(1)})
|
|
|
|
# test calling a method with keywords given by **dict
|
|
|
|
class A:
|
|
def f(self, a, b):
|
|
print(a, b)
|
|
|
|
a = A()
|
|
a.f(1, **{'b':2})
|
|
a.f(1, **{'b':val for val in range(1)})
|