summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
Diffstat (limited to 'PC')
-rw-r--r--PC/VC6/pythoncore.dsp4
-rw-r--r--PC/config.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp
index 357ad49..8fbb998 100644
--- a/PC/VC6/pythoncore.dsp
+++ b/PC/VC6/pythoncore.dsp
@@ -301,6 +301,10 @@ SOURCE=..\..\Objects\funcobject.c
# End Source File
# Begin Source File
+SOURCE=..\..\Modules\functionalmodule.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Python\future.c
# End Source File
# Begin Source File
diff --git a/PC/config.c b/PC/config.c
index 983255a..bd040b0 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -53,6 +53,7 @@ extern void init_sre(void);
extern void initparser(void);
extern void init_winreg(void);
extern void initdatetime(void);
+extern void initfunctional(void);
extern void init_multibytecodec(void);
extern void init_codecs_cn(void);
@@ -124,6 +125,7 @@ struct _inittab _PyImport_Inittab[] = {
{"parser", initparser},
{"_winreg", init_winreg},
{"datetime", initdatetime},
+ {"functional", initfunctional},
{"xxsubtype", initxxsubtype},
{"zipimport", initzipimport},