[Python-checkins] r62306 - python/trunk/PC/config.c

brett.cannon python-checkins at python.org
Sun Apr 13 02:25:15 CEST 2008


Author: brett.cannon
Date: Sun Apr 13 02:25:15 2008
New Revision: 62306

Log:
Fix an accidental bug of an non-existent init function.


Modified:
   python/trunk/PC/config.c

Modified: python/trunk/PC/config.c
==============================================================================
--- python/trunk/PC/config.c	(original)
+++ python/trunk/PC/config.c	Sun Apr 13 02:25:15 2008
@@ -160,8 +160,6 @@
         {"__builtin__", NULL},
         {"sys", NULL},
 	{"exceptions", NULL},
-        
-        {"_types", init_types},
         {"_warnings", _PyWarnings_Init},
 
         /* Sentinel */


More information about the Python-checkins mailing list