diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-06-09 08:16:02 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-06-09 08:16:02 (GMT) |
commit | 58f22ccc012f0109f802e54e9c3daf2dbe30898a (patch) | |
tree | 24f0eed1413770330a876fdc29e039f7f378c4e7 /PC | |
parent | fae8953a59e640f77a8da36320629643625dfe8f (diff) | |
download | cpython-58f22ccc012f0109f802e54e9c3daf2dbe30898a.zip cpython-58f22ccc012f0109f802e54e9c3daf2dbe30898a.tar.gz cpython-58f22ccc012f0109f802e54e9c3daf2dbe30898a.tar.bz2 |
reorganise modules, so that most standard extensions are built into
the Python DLL. this slightly improves performance; reduces
fragmentation of address spaces and slightly reduces memory footprint.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/os2emx/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/os2emx/config.c b/PC/os2emx/config.c index 010aa4f..6ffc157 100644 --- a/PC/os2emx/config.c +++ b/PC/os2emx/config.c @@ -107,7 +107,7 @@ struct _inittab _PyImport_Inittab[] = { {"thread", initthread}, #endif {"_codecs", init_codecs}, - {"_csv", init_codecs}, + {"_csv", init_csv}, {"_locale", init_locale}, {"_random", init_random}, {"_sre", init_sre}, |