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 Anthony Sottile
Recipients Anthony Sottile
Date 2017-09-22.03:32:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1506051158.28.0.318471298874.issue31550@psf.upfronthosting.co.za>
In-reply-to
Content
There's a bit of history I don't understand and couldn't find the appropriate trail for.

The original error message from the 2.6 era:

$ python2.6 -c 0[0]
Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: 'int' object is unsubscriptable


This was changed in https://github.com/python/cpython/commit/f5fd5239819c5dfb1d7a33484be49dc705544d02 for clarity

As seen in 2.7.1

$ ./python2.7.1 -c 0[0]
Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: 'int' object is not subscriptable


It was later changed in the 2.7 era here: 
https://github.com/python/cpython/commit/7d1483cbadbe48620964348a2039690624e7dc8e


To this error message (as demonstrated with 2.7.12):

$ python2.7 -c 0[0]
Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: 'int' object has no attribute '__getitem__'


However, this patch never made it into the 3.x branch:

$ python3.6 -c 0[0]
Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: 'int' object is not subscriptable


Should this patch be (have been) cherry picked into master?
History
Date User Action Args
2017-09-22 03:32:38Anthony Sottilesetrecipients: + Anthony Sottile
2017-09-22 03:32:38Anthony Sottilesetmessageid: <1506051158.28.0.318471298874.issue31550@psf.upfronthosting.co.za>
2017-09-22 03:32:38Anthony Sottilelinkissue31550 messages
2017-09-22 03:32:37Anthony Sottilecreate