[Python-checkins] python/dist/src/PC config.c,1.50,1.51
tim_one at users.sourceforge.net
tim_one at users.sourceforge.net
Tue Oct 12 23:48:59 CEST 2004
Update of /cvsroot/python/python/dist/src/PC
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15106/PC
Modified Files:
config.c
Log Message:
Supply the _subprocess module under 7.1. I'm not sure what the status
of this should be on non-WIN32 Windows variants.
Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- config.c 31 Aug 2004 14:29:12 -0000 1.50
+++ config.c 12 Oct 2004 21:48:56 -0000 1.51
@@ -61,6 +61,7 @@
extern void init_codecs_jp(void);
extern void init_codecs_kr(void);
extern void init_codecs_tw(void);
+extern void init_subprocess(void);
/* tools/freeze/makeconfig.py marker for additional "extern" */
/* -- ADDMODULE MARKER 1 -- */
@@ -105,6 +106,8 @@
{"msvcrt", initmsvcrt},
{"_locale", init_locale},
#endif
+ /* XXX Should _subprocess go in a WIN32 block? not WIN64? */
+ {"_subprocess", init_subprocess},
{"_codecs", init_codecs},
{"_weakref", init_weakref},
More information about the Python-checkins
mailing list