diff options
author | Christian Heimes <christian@cheimes.de> | 2008-03-27 01:36:21 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-03-27 01:36:21 (GMT) |
commit | a82e8db5e4994dbad8b5f5a81c7397beb1517cb7 (patch) | |
tree | 3c94bc4b36434053e1d2df2b5de5ef493e7c3ab2 /PC/config.c | |
parent | 8113586723e98212a3ffc6aa83b6fc22a7ab5e70 (diff) | |
download | cpython-a82e8db5e4994dbad8b5f5a81c7397beb1517cb7.zip cpython-a82e8db5e4994dbad8b5f5a81c7397beb1517cb7.tar.gz cpython-a82e8db5e4994dbad8b5f5a81c7397beb1517cb7.tar.bz2 |
Hopefully added _fileio module to the Windows build system
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index f2d38ae..816edca 100644 --- a/PC/config.c +++ b/PC/config.c @@ -52,6 +52,7 @@ extern void initparser(void); extern void init_winreg(void); extern void init_struct(void); extern void initdatetime(void); +extern void init_fileio(void); extern void init_functools(void); extern void initzlib(void); @@ -129,6 +130,7 @@ struct _inittab _PyImport_Inittab[] = { {"_winreg", init_winreg}, {"_struct", init_struct}, {"datetime", initdatetime}, + {"_fileio", init_fileio}, {"_functools", init_functools}, {"xxsubtype", initxxsubtype}, |