diff options
author | Raymond Hettinger <python@rcn.com> | 2005-02-28 19:39:44 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-02-28 19:39:44 (GMT) |
commit | 9c323f8de4910dfc0baa5e55aa84eb1b02bcbb72 (patch) | |
tree | 7f0eecf7973ff979710eb1cb1795598e55736774 /PC | |
parent | 049ade2997aee8cd6564e05d29dbe0b390ebf27b (diff) | |
download | cpython-9c323f8de4910dfc0baa5e55aa84eb1b02bcbb72.zip cpython-9c323f8de4910dfc0baa5e55aa84eb1b02bcbb72.tar.gz cpython-9c323f8de4910dfc0baa5e55aa84eb1b02bcbb72.tar.bz2 |
SF patch #941881: PEP 309 Implementation (Partial Function Application).
Combined efforts of many including Peter Harris, Hye-Shik Chang,
Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger.
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 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}, |