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 martin.panter
Recipients Cesar.Kawakami, Devin Jeanpierre, Kyle.Buzsaki, martin.panter, r.david.murray, rhettinger
Date 2015-01-20.09:40:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421746847.63.0.595286514544.issue23275@psf.upfronthosting.co.za>
In-reply-to
Content
But () is the odd one out if you consider

>>> [a, b] = range(2)
>>> [] = range(0)
>>> (a, b) = range(2)
>>> () = range(0)
  File "<stdin>", line 1
SyntaxError: can't assign to ()
History
Date User Action Args
2015-01-20 09:40:47martin.pantersetrecipients: + martin.panter, rhettinger, Devin Jeanpierre, r.david.murray, Cesar.Kawakami, Kyle.Buzsaki
2015-01-20 09:40:47martin.pantersetmessageid: <1421746847.63.0.595286514544.issue23275@psf.upfronthosting.co.za>
2015-01-20 09:40:47martin.panterlinkissue23275 messages
2015-01-20 09:40:47martin.pantercreate