diff options
Diffstat (limited to 'Lib/test/gdb_sample.py')
-rw-r--r-- | Lib/test/gdb_sample.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/gdb_sample.py b/Lib/test/gdb_sample.py index cab13fb4da5..4188f50136f 100644 --- a/Lib/test/gdb_sample.py +++ b/Lib/test/gdb_sample.py @@ -1,7 +1,7 @@ # Sample script for use by test_gdb.py def foo(a, b, c): - bar(a, b, c) + bar(a=a, b=b, c=c) def bar(a, b, c): baz(a, b, c) |