This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author acue
Recipients acue
Date 2016-06-05.17:06:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465146406.06.0.602143214773.issue27234@psf.upfronthosting.co.za>
In-reply-to
Content
A single value terminated by a comma is assigned to be a tuple, even when missing parenthesis.

a=(1)  =>  a=1    OK/defined as
a=(1,) =>  a=(1,) OK
a=1,   =>  a=(1,) ???

Is the latter intended?

------------------
In [4]: a=1,

In [5]: print a
(1,)

In [6]: type(a)
Out[6]: tuple
-------------------
History
Date User Action Args
2016-06-05 17:06:46acuesetrecipients: + acue
2016-06-05 17:06:46acuesetmessageid: <1465146406.06.0.602143214773.issue27234@psf.upfronthosting.co.za>
2016-06-05 17:06:46acuelinkissue27234 messages
2016-06-05 17:06:45acuecreate