diff options
Diffstat (limited to 'PC')
-rw-r--r-- | PC/VC6/pythoncore.dsp | 4 | ||||
-rw-r--r-- | PC/config.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp index 56e8e37..5e0ba21 100644 --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -269,6 +269,10 @@ SOURCE=..\..\Python\codecs.c # End Source File
# Begin Source File
+SOURCE=..\..\Modules\collectionsmodule.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Python\compile.c
# End Source File
# Begin Source File
diff --git a/PC/config.c b/PC/config.c index a12f633..e618302 100644 --- a/PC/config.c +++ b/PC/config.c @@ -46,6 +46,7 @@ extern void initxxsubtype(void); extern void initzipimport(void); extern void init_random(void); extern void inititertools(void); +extern void initcollections(void); extern void initheapq(void); extern void init_bisect(void); extern void init_symtable(void); @@ -136,6 +137,7 @@ struct _inittab _PyImport_Inittab[] = { {"_bisect", init_bisect}, {"heapq", initheapq}, {"itertools", inititertools}, + {"collections", initcollections}, {"_symtable", init_symtable}, {"mmap", initmmap}, {"_csv", init_csv}, |