diff options
author | Guido van Rossum <guido@python.org> | 2000-03-11 00:13:14 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-11 00:13:14 (GMT) |
commit | 76bd689a8dc3abd237ad831f95f5341ef80f437e (patch) | |
tree | c072c4ab7c15a7732e36248995f6f9ff17925ab3 /PC | |
parent | a831cac7a893ffbd344a721377e3b4fb292c69b5 (diff) | |
download | cpython-76bd689a8dc3abd237ad831f95f5341ef80f437e.zip cpython-76bd689a8dc3abd237ad831f95f5341ef80f437e.tar.gz cpython-76bd689a8dc3abd237ad831f95f5341ef80f437e.tar.bz2 |
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')
-rw-r--r-- | PC/config.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index 26772af..2efd6c2 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 */ |