summaryrefslogtreecommitdiff
path: root/PC/config.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-11 00:13:14 +0000
committerGuido van Rossum <guido@python.org>2000-03-11 00:13:14 +0000
commitf330584c0fd23677350fc353e3edf1e11f0df8ea (patch)
treef08c4b8f478675c20d2ea9e92b4f859ffb6cc36b /PC/config.c
parent43bfa64beca314775c39af6c70453d37d0ef97a7 (diff)
downloadcpython-f330584c0fd23677350fc353e3edf1e11f0df8ea.tar.gz
VC++ project changes to add new Unicode files and modules.
(I did this under VC++ 5.0 -- hope this doesn't break anything.)
Diffstat (limited to 'PC/config.c')
-rw-r--r--PC/config.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c
index 26772af6af..2efd6c2de1 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -67,6 +67,8 @@ extern void initmsvcrt();
extern void initwinsound();
extern void init_locale();
#endif
+extern void init_codecs();
+extern void initunicodedata();
/* -- ADDMODULE MARKER 1 -- */
@@ -113,6 +115,9 @@ struct _inittab _PyImport_Inittab[] = {
{"_locale", init_locale},
#endif
+ {"_codecs", init_codecs},
+ {"unicodedata", initunicodedata},
+
/* -- ADDMODULE MARKER 2 -- */
/* This module "lives in" with marshal.c */