commit | ac28147e78c45a6217d348ce90ca5281d91f676f | [log] [tgz] |
---|---|---|
author | Ivan Levkivskyi <levkivskyi@gmail.com> | Sun Feb 17 23:13:46 2019 +0000 |
committer | GitHub <noreply@github.com> | Sun Feb 17 23:13:46 2019 +0000 |
tree | 891d00108f7066f1174788f72dd1696079950b68 | |
parent | 1bf8845f74013c5f1cc5f49a11e52c652a1fb9dd [diff] |
bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857) Not using `__class_getitem__()` fallback if there is a non-subcriptable metaclass was caused by a certain asymmetry between how `PySequenceMethods` and `PyMappingMethods` are used in `PyObject_GetItem`. This PR removes this asymmetry. No tests failed, so I assume it was not intentional.