Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 48b486b

Browse files
committed
Added unicodedata and _codecs modules (which had apparently slipped through until now).
1 parent 092580b commit 48b486b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Mac/Modules/macconfig.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ extern void initsoundex();
8282
extern void initoperator();
8383
extern void initerrno();
8484
extern void initpcre();
85+
extern void initunicodedata();
86+
extern void init_codecs();
8587
#ifdef THINK
8688
extern void initmacconsole();
8789
#endif
@@ -202,6 +204,8 @@ struct _inittab _PyImport_Inittab[] = {
202204
{"operator", initoperator},
203205
{"errno", initerrno},
204206
{"pcre", initpcre},
207+
{"unicodedata", initunicodedata},
208+
{"_codecs", init_codecs},
205209
#ifdef THINK_C
206210
/* This is an interface to the Think runtime */
207211
{"macconsole", initmacconsole},

0 commit comments

Comments
 (0)