mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
VC++ project changes to add new Unicode files and modules.
(I did this under VC++ 5.0 -- hope this doesn't break anything.)
This commit is contained in:
parent
a831cac7a8
commit
76bd689a8d
2 changed files with 125 additions and 17 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue