diff options
Diffstat (limited to 'PC')
-rw-r--r-- | PC/VC6/pythoncore.dsp | 8 | ||||
-rw-r--r-- | PC/VS7.1/pythoncore.vcproj | 6 | ||||
-rw-r--r-- | PC/VS8.0/pythoncore.vcproj | 8 | ||||
-rw-r--r-- | PC/config.c | 3 |
4 files changed, 25 insertions, 0 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp index 89ab515..fde4be3 100644 --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -161,6 +161,10 @@ SOURCE=..\..\Modules\_lsprof.c # End Source File
# Begin Source File
+SOURCE=..\..\Modules\_pickle.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Modules\_randommodule.c
# End Source File
# Begin Source File
@@ -169,6 +173,10 @@ SOURCE=..\..\Modules\_sre.c # End Source File
# Begin Source File
+SOURCE=..\..\Modules\_stringio.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Modules\_struct.c
# End Source File
# Begin Source File
diff --git a/PC/VS7.1/pythoncore.vcproj b/PC/VS7.1/pythoncore.vcproj index f02c2a2..3094755 100644 --- a/PC/VS7.1/pythoncore.vcproj +++ b/PC/VS7.1/pythoncore.vcproj @@ -389,12 +389,18 @@ RelativePath="..\..\Modules\_lsprof.c"> </File> <File + RelativePath="..\..\Modules\_pickle.c"> + </File> + <File RelativePath="..\..\Modules\_randommodule.c"> </File> <File RelativePath="..\..\Modules\_sre.c"> </File> <File + RelativePath="..\..\Modules\_stringio.c"> + </File> + <File RelativePath="..\..\Modules\_struct.c"> </File> <File diff --git a/PC/VS8.0/pythoncore.vcproj b/PC/VS8.0/pythoncore.vcproj index af004f4..8c61e88 100644 --- a/PC/VS8.0/pythoncore.vcproj +++ b/PC/VS8.0/pythoncore.vcproj @@ -1011,6 +1011,10 @@ >
</File>
<File
+ RelativePath="..\..\Modules\_pickle.c"
+ >
+ </File>
+ <File
RelativePath="..\..\Modules\_randommodule.c"
>
</File>
@@ -1019,6 +1023,10 @@ >
</File>
<File
+ RelativePath="..\..\Modules\_stringio.c"
+ >
+ </File>
+ <File
RelativePath="..\..\Modules\_struct.c"
>
</File>
diff --git a/PC/config.c b/PC/config.c index a7f2ede..f2bdfdb 100644 --- a/PC/config.c +++ b/PC/config.c @@ -60,6 +60,8 @@ extern PyObject* PyInit__lsprof(void); extern PyObject* PyInit__ast(void); extern PyObject* PyInit__fileio(void); extern PyObject* PyInit__bytesio(void); +extern PyObject* PyInit__stringio(void); +extern PyObject* PyInit__pickle(void); extern PyObject* PyInit_atexit(void); extern PyObject* _PyWarnings_Init(void); @@ -151,6 +153,7 @@ struct _inittab _PyImport_Inittab[] = { {"_fileio", PyInit__fileio}, {"_bytesio", PyInit__bytesio}, {"_stringio", PyInit__stringio}, + {"_pickle", PyInit__pickle}, {"atexit", PyInit_atexit}, /* Sentinel */ |