[Python-checkins] r59475 - python/trunk/Modules/xxmodule.c

christian.heimes python-checkins at python.org
Wed Dec 12 19:09:06 CET 2007


Author: christian.heimes
Date: Wed Dec 12 19:09:06 2007
New Revision: 59475

Modified:
   python/trunk/Modules/xxmodule.c
Log:
Fixed a nasty problem in the xxmodule.c

Modified: python/trunk/Modules/xxmodule.c
==============================================================================
--- python/trunk/Modules/xxmodule.c	(original)
+++ python/trunk/Modules/xxmodule.c	Wed Dec 12 19:09:06 2007
@@ -349,7 +349,7 @@
 	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;
 


More information about the Python-checkins mailing list