summaryrefslogtreecommitdiffstats
path: root/Tools/framer
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-02-02 21:29:40 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-02-02 21:29:40 (GMT)
commit9f9892648f954e45a628113febb524261075db32 (patch)
tree9a9e70a2318e67812787794ea9ab91f59b16b37a /Tools/framer
parent7f42395b6d78a7c8e6b2ef2623c181aa93084269 (diff)
downloadcpython-9f9892648f954e45a628113febb524261075db32.zip
cpython-9f9892648f954e45a628113febb524261075db32.tar.gz
cpython-9f9892648f954e45a628113febb524261075db32.tar.bz2
Issue #1717, continued: Doc fixes and other cleanup related
to renaming of tp_compare.
Diffstat (limited to 'Tools/framer')
-rw-r--r--Tools/framer/framer/slots.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/framer/framer/slots.py b/Tools/framer/framer/slots.py
index d369c9a..0f6e6fe 100644
--- a/Tools/framer/framer/slots.py
+++ b/Tools/framer/framer/slots.py
@@ -15,7 +15,7 @@ Slots = (Slot("ob_size"),
Slot("tp_print", "printfunc"),
Slot("tp_getattr", "getattrfunc"),
Slot("tp_setattr", "setattrfunc"),
- Slot("tp_compare", "cmpfunc", "__cmp__"),
+ Slot("tp_reserved", "void*"),
Slot("tp_repr", "reprfunc", "__repr__"),
Slot("tp_as_number"),
Slot("tp_as_sequence"),