tests/cpydiff/core_function_unpacking: Fill in workaround.

This commit is contained in:
Paul Sokolovsky 2017-05-04 00:48:48 +03:00
parent 92657c671f
commit 12ea06567c
1 changed files with 2 additions and 2 deletions

View File

@ -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)