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