diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-12 18:09:06 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-12 18:09:06 (GMT) |
commit | 842c178442a9b9b855d9773dbe2e8ac3d6d79895 (patch) | |
tree | d2e3f1ee17c0644e4c4c3e79a0cb0662dbae45bf | |
parent | 99b9df8e11ad6a80185a3a490759561710646c19 (diff) | |
download | cpython-842c178442a9b9b855d9773dbe2e8ac3d6d79895.zip cpython-842c178442a9b9b855d9773dbe2e8ac3d6d79895.tar.gz cpython-842c178442a9b9b855d9773dbe2e8ac3d6d79895.tar.bz2 |
Fixed a nasty problem in the xxmodule.c
-rw-r--r-- | Modules/xxmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/xxmodule.c b/Modules/xxmodule.c index 8807298..6e18836 100644 --- a/Modules/xxmodule.c +++ b/Modules/xxmodule.c @@ -349,7 +349,7 @@ initxx(void) 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, too. /* + * object; doing it here is required for portability, too. */ if (PyType_Ready(&Xxo_Type) < 0) return; |