diff options
Diffstat (limited to 'Lib/test/test_extcall.py')
-rw-r--r-- | Lib/test/test_extcall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index 3e0426f..453f464 100644 --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -274,6 +274,6 @@ for name in ['za', 'zade', 'zabk', 'zabdv', 'zabdevk']: for kwargs in ['', 'a', 'd', 'ad', 'abde']: kwdict = {} for k in kwargs: kwdict[k] = k + k - print(func.func_name, args, sortdict(kwdict), '->', end=' ') + print(func.__name__, args, sortdict(kwdict), '->', end=' ') try: func(*args, **kwdict) except TypeError as err: print(err) |