Pablo Galindo Salgado <pablog...@gmail.com> added the comment:

The error is correct:

>>> *(2,3,4)
  File "<stdin>", 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: +pablogsal
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue45014>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to