summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2014-07-26 15:25:04 +0200
committerMartin v. Löwis <martin@v.loewis.de>2014-07-26 15:25:04 +0200
commit5b5615006cb1a818caf9d21e3190750b9dd99f27 (patch)
tree6c86b64f7688d9faa045418d1c50368ec507392a
parent011428e168fcbc75c6e2ee3fbaf511bc64f65501 (diff)
downloadcpython-git-5b5615006cb1a818caf9d21e3190750b9dd99f27.tar.gz
slotdefs is no longer sorted.
-rw-r--r--Objects/typeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index c759204dc0..4f87817984 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)
{