diff options
author | Georg Brandl <georg@python.org> | 2010-10-14 07:04:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-14 07:04:07 (GMT) |
commit | 66c221e993bf7c5979145dbbe365238f2d70064f (patch) | |
tree | 75394c24f6343e932125b9a35a9fbea401fe4812 /Modules/config.c.in | |
parent | 268e4d4cf36ad79e71438fd864160892b335388d (diff) | |
download | cpython-66c221e993bf7c5979145dbbe365238f2d70064f.zip cpython-66c221e993bf7c5979145dbbe365238f2d70064f.tar.gz cpython-66c221e993bf7c5979145dbbe365238f2d70064f.tar.bz2 |
#9418: first step of moving private string methods to _string module.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 3fb5dd3..34d44d5 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -29,6 +29,7 @@ extern PyObject* PyInit_imp(void); extern PyObject* PyInit_gc(void); extern PyObject* PyInit__ast(void); extern PyObject* _PyWarnings_Init(void); +extern PyObject* PyInit__string(void); struct _inittab _PyImport_Inittab[] = { @@ -54,6 +55,9 @@ struct _inittab _PyImport_Inittab[] = { /* This lives in _warnings.c */ {"_warnings", _PyWarnings_Init}, + /* This lives in Objects/unicodeobject.c */ + {"_string", PyInit__string}, + /* Sentinel */ {0, 0} }; |