diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-03 14:28:04 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-03 14:28:04 (GMT) |
commit | 0f6d4e6cd35646a572dccce8c4a86ac3d1afb183 (patch) | |
tree | e85c24dfc9f8d711e41b6e5669bdbcbefe1157a2 | |
parent | c654fc2cadee17bae5773a9313c5eed576ea4b37 (diff) | |
download | cpython-0f6d4e6cd35646a572dccce8c4a86ac3d1afb183.zip cpython-0f6d4e6cd35646a572dccce8c4a86ac3d1afb183.tar.gz cpython-0f6d4e6cd35646a572dccce8c4a86ac3d1afb183.tar.bz2 |
I followed MA Lemberg's suggestion and added comments to the late initialization of the type slots.
-rw-r--r-- | Modules/xxmodule.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Modules/xxmodule.c b/Modules/xxmodule.c index 9fb4483..8807298 100644 --- a/Modules/xxmodule.c +++ b/Modules/xxmodule.c @@ -246,7 +246,7 @@ static PyTypeObject Str_Type = { 0, /*tp_methods*/ 0, /*tp_members*/ 0, /*tp_getset*/ - 0, /*tp_base*/ + 0, /* see initxx */ /*tp_base*/ 0, /*tp_dict*/ 0, /*tp_descr_get*/ 0, /*tp_descr_set*/ @@ -301,14 +301,14 @@ static PyTypeObject Null_Type = { 0, /*tp_methods*/ 0, /*tp_members*/ 0, /*tp_getset*/ - 0, /*tp_base*/ + 0, /* see initxx */ /*tp_base*/ 0, /*tp_dict*/ 0, /*tp_descr_get*/ 0, /*tp_descr_set*/ 0, /*tp_dictoffset*/ 0, /*tp_init*/ 0, /*tp_alloc*/ - 0, /*tp_new*/ + 0, /* see initxx */ /*tp_new*/ 0, /*tp_free*/ 0, /*tp_is_gc*/ }; @@ -341,13 +341,15 @@ initxx(void) { PyObject *m; + /* Due to cross platform compiler issues the slots must be filled + * here. It's required for portability to Windows without requiring + * C++. */ Null_Type.tp_base = &PyBaseObject_Type; Null_Type.tp_new = PyType_GenericNew; Str_Type.tp_base = &PyUnicode_Type; /* Finalize the type object including setting type of the new type - * object; doing it here is required for portability to Windows - * without requiring C++. */ + * object; doing it here is required for portability, too. /* if (PyType_Ready(&Xxo_Type) < 0) return; |