2017-02-07 04:55:37 +00:00
|
|
|
"""
|
|
|
|
categories: Core,Functions
|
2017-05-03 22:48:48 +01:00
|
|
|
description: Unpacking function arguments in non-last position isn't detected as an error
|
2017-02-07 04:55:37 +00:00
|
|
|
cause: Unknown
|
2017-05-03 22:48:48 +01:00
|
|
|
workaround: The syntax below is invalid, never use it in applications.
|
2017-02-07 04:55:37 +00:00
|
|
|
"""
|
|
|
|
print(*(1, 2), 3)
|