diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-06-14 03:05:54 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-06-14 03:05:54 (GMT) |
commit | e69041db56e42ab1c47188e427acc232d9f4fcea (patch) | |
tree | 005ef007ef2b8408bbd14eeff5fff5f0dc2dff74 /PC/config.c | |
parent | 8fa3e933c170a0b0d370f575a85f0c062934821c (diff) | |
download | cpython-e69041db56e42ab1c47188e427acc232d9f4fcea.zip cpython-e69041db56e42ab1c47188e427acc232d9f4fcea.tar.gz cpython-e69041db56e42ab1c47188e427acc232d9f4fcea.tar.bz2 |
Updated MSVC files to follow r73394.
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/PC/config.c b/PC/config.c index a5e1530..41f0573 100644 --- a/PC/config.c +++ b/PC/config.c @@ -52,8 +52,6 @@ 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_bytesio(void); extern void init_functools(void); extern void init_json(void); extern void initzlib(void); @@ -68,6 +66,7 @@ extern void init_codecs_tw(void); extern void init_subprocess(void); extern void init_lsprof(void); extern void init_ast(void); +extern void init_io(void); extern void _PyWarnings_Init(void); /* tools/freeze/makeconfig.py marker for additional "extern" */ @@ -132,8 +131,6 @@ struct _inittab _PyImport_Inittab[] = { {"_winreg", init_winreg}, {"_struct", init_struct}, {"datetime", initdatetime}, - {"_fileio", init_fileio}, - {"_bytesio", init_bytesio}, {"_functools", init_functools}, {"_json", init_json}, @@ -166,6 +163,8 @@ struct _inittab _PyImport_Inittab[] = { {"exceptions", NULL}, {"_warnings", _PyWarnings_Init}, + {"_io", init_io}, + /* Sentinel */ {0, 0} }; |