Fixed a nasty problem in the xxmodule.c

This commit is contained in:
Christian Heimes 2007-12-12 18:09:06 +00:00
parent 99b9df8e11
commit 842c178442
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ initxx(void)
Str_Type.tp_base = &PyUnicode_Type; Str_Type.tp_base = &PyUnicode_Type;
/* Finalize the type object including setting type of the new type /* Finalize the type object including setting type of the new type
* object; doing it here is required for portability, too. /* * object; doing it here is required for portability, too. */
if (PyType_Ready(&Xxo_Type) < 0) if (PyType_Ready(&Xxo_Type) < 0)
return; return;