summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2014-07-26 13:25:04 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2014-07-26 13:25:04 (GMT)
commit5b5615006cb1a818caf9d21e3190750b9dd99f27 (patch)
tree6c86b64f7688d9faa045418d1c50368ec507392a /Objects
parent011428e168fcbc75c6e2ee3fbaf511bc64f65501 (diff)
downloadcpython-5b5615006cb1a818caf9d21e3190750b9dd99f27.zip
cpython-5b5615006cb1a818caf9d21e3190750b9dd99f27.tar.gz
cpython-5b5615006cb1a818caf9d21e3190750b9dd99f27.tar.bz2
slotdefs is no longer sorted.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/typeobject.c2
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)
{