summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2003-06-09 08:16:02 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2003-06-09 08:16:02 (GMT)
commit58f22ccc012f0109f802e54e9c3daf2dbe30898a (patch)
tree24f0eed1413770330a876fdc29e039f7f378c4e7
parentfae8953a59e640f77a8da36320629643625dfe8f (diff)
downloadcpython-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.
-rw-r--r--PC/os2emx/config.c2
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},