diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-05-04 00:48:48 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-05-04 00:48:48 +0300 |
commit | 12ea06567c236f0c6e3aa6045ced9a9b1272ebc6 (patch) | |
tree | 2e3d1a90e1ba714d7bdebeff28813aaa08aae17c | |
parent | 92657c671f85843ae5f0df85b954d844a5cdd9d1 (diff) |
tests/cpydiff/core_function_unpacking: Fill in workaround.
-rw-r--r-- | tests/cpydiff/core_function_unpacking.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cpydiff/core_function_unpacking.py b/tests/cpydiff/core_function_unpacking.py index f0cc24055..01d25ee4d 100644 --- a/tests/cpydiff/core_function_unpacking.py +++ b/tests/cpydiff/core_function_unpacking.py @@ -1,7 +1,7 @@ """ categories: Core,Functions -description: Unpacking function arguments in non-last position gives incorrect result +description: Unpacking function arguments in non-last position isn't detected as an error cause: Unknown -workaround: Unknown +workaround: The syntax below is invalid, never use it in applications. """ print(*(1, 2), 3) |