Pablo Galindo Salgado added the comment:
The error is correct:
>>> *(2,3,4)
File "", line 1
SyntaxError: can't use starred expression her
The problem is that you are trying to use as top level while:
*(),
is equivalent to:
(*(),)
which is using them in a tuple
--
nosy: +pablogs
New submission from Takuo Matsuoka :
The error is this:
>>> *()
File "", line 1
SyntaxError: can't use starred expression here
I think it's right SyntaxError is raised here, but the message is
incorrect. Indeed, many starred expressions are actually allowed
there. E.g.,
>>> *(),
()
I hap