summaryrefslogtreecommitdiff
path: root/Modules/xxsubtype.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-12-17 18:26:19 +0000
committerTim Peters <tim.peters@gmail.com>2001-12-17 18:26:19 +0000
commit0b1de84b48492cf9cfbd24cd0b856acb81b8e7f7 (patch)
tree9f9a06be230489c4baf060914e2b78dabc5e4795 /Modules/xxsubtype.c
parentb07dfbbc8eac21d9f3a62f651e3aaba018a842af (diff)
downloadcpython-0b1de84b48492cf9cfbd24cd0b856acb81b8e7f7.tar.gz
initxxsubtype(): Add a comment to make the magic clearer; I doubt it's
obvious to anyone except PyType_Ready's author <0.9 wink>.
Diffstat (limited to 'Modules/xxsubtype.c')
-rw-r--r--Modules/xxsubtype.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/Modules/xxsubtype.c b/Modules/xxsubtype.c
index d10840947a..f3d8e89ed7 100644
--- a/Modules/xxsubtype.c
+++ b/Modules/xxsubtype.c
@@ -240,8 +240,10 @@ initxxsubtype(void)
{
PyObject *m, *d;
- /* Fill in the deferred data addresses. This must be done before
- PyType_Ready() is called. */
+ /* Fill in deferred data addresses. This must be done before
+ PyType_Ready() is called. Note that PyType_Ready() automatically
+ initializes the ob.ob_type field to &PyType_Type if it's NULL,
+ so it's not necessary to fill in ob_type first. */
spamdict_type.tp_base = &PyDict_Type;
if (PyType_Ready(&spamdict_type) < 0)
return;