Fixed dotted name assertion.

This commit is contained in:
Raymond Hettinger 2003-05-22 16:32:58 +00:00
parent f9415e6245
commit d449eab1e4
1 changed files with 2 additions and 2 deletions

View File

@ -1832,9 +1832,9 @@ inititertools(void)
for (i=0 ; typelist[i] != NULL ; i++) {
if (PyType_Ready(typelist[i]) < 0)
return;
name = strchr(typelist[i]->tp_name, '.') + 1;
name = strchr(typelist[i]->tp_name, '.');
assert (name != NULL);
Py_INCREF(typelist[i]);
PyModule_AddObject(m, name, (PyObject *)typelist[i]);
PyModule_AddObject(m, name+1, (PyObject *)typelist[i]);
}
}