mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Added unicodedata and _codecs modules (which had apparently slipped through until now).
This commit is contained in:
parent
092580baa9
commit
48b486b054
1 changed files with 4 additions and 0 deletions
|
@ -82,6 +82,8 @@ extern void initsoundex();
|
||||||
extern void initoperator();
|
extern void initoperator();
|
||||||
extern void initerrno();
|
extern void initerrno();
|
||||||
extern void initpcre();
|
extern void initpcre();
|
||||||
|
extern void initunicodedata();
|
||||||
|
extern void init_codecs();
|
||||||
#ifdef THINK
|
#ifdef THINK
|
||||||
extern void initmacconsole();
|
extern void initmacconsole();
|
||||||
#endif
|
#endif
|
||||||
|
@ -202,6 +204,8 @@ struct _inittab _PyImport_Inittab[] = {
|
||||||
{"operator", initoperator},
|
{"operator", initoperator},
|
||||||
{"errno", initerrno},
|
{"errno", initerrno},
|
||||||
{"pcre", initpcre},
|
{"pcre", initpcre},
|
||||||
|
{"unicodedata", initunicodedata},
|
||||||
|
{"_codecs", init_codecs},
|
||||||
#ifdef THINK_C
|
#ifdef THINK_C
|
||||||
/* This is an interface to the Think runtime */
|
/* This is an interface to the Think runtime */
|
||||||
{"macconsole", initmacconsole},
|
{"macconsole", initmacconsole},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue