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 /PC | |
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 'PC')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index 7d501b5..1fc2b40 100644 --- a/PC/config.c +++ b/PC/config.c @@ -62,6 +62,7 @@ extern PyObject* PyInit__io(void); extern PyObject* PyInit__pickle(void); extern PyObject* PyInit_atexit(void); extern PyObject* _PyWarnings_Init(void); +extern PyObject* PyInit__string(void); /* tools/freeze/makeconfig.py marker for additional "extern" */ /* -- ADDMODULE MARKER 1 -- */ @@ -147,6 +148,7 @@ struct _inittab _PyImport_Inittab[] = { {"builtins", NULL}, {"sys", NULL}, {"_warnings", _PyWarnings_Init}, + {"_string", PyInit__string}, {"_io", PyInit__io}, {"_pickle", PyInit__pickle}, |