blob: 01d25ee4d2fa31a7de0a3ed19e61ba0fc952d8bf (
plain)
1
2
3
4
5
6
7
|
"""
categories: Core,Functions
description: Unpacking function arguments in non-last position isn't detected as an error
cause: Unknown
workaround: The syntax below is invalid, never use it in applications.
"""
print(*(1, 2), 3)
|