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