diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2014-07-26 13:25:04 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2014-07-26 13:25:04 (GMT) |
commit | 5b5615006cb1a818caf9d21e3190750b9dd99f27 (patch) | |
tree | 6c86b64f7688d9faa045418d1c50368ec507392a /Objects | |
parent | 011428e168fcbc75c6e2ee3fbaf511bc64f65501 (diff) | |
download | cpython-5b5615006cb1a818caf9d21e3190750b9dd99f27.zip cpython-5b5615006cb1a818caf9d21e3190750b9dd99f27.tar.gz cpython-5b5615006cb1a818caf9d21e3190750b9dd99f27.tar.bz2 |
slotdefs is no longer sorted.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index c759204..4f87817 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -6509,7 +6509,7 @@ update_slots_callback(PyTypeObject *type, void *data) } /* Initialize the slotdefs table by adding interned string objects for the - names and sorting the entries. */ + names. */ static void init_slotdefs(void) { |