summaryrefslogtreecommitdiff
path: root/Modules/config.c.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-11-10 12:53:24 +0000
committerGuido van Rossum <guido@python.org>1993-11-10 12:53:24 +0000
commit52f2c05401ab13eab45a91d39089866f55ef3c9b (patch)
treeae73dc8f72a56cc6c15ae30e9b2e78ef654ae20c /Modules/config.c.in
parenta3d78fb268da5cf7cd4d990cf118bfc01650a8d9 (diff)
downloadcpython-git-52f2c05401ab13eab45a91d39089866f55ef3c9b.tar.gz
* parsermodule.c, Makefile, config.c: rudimentary interface to the Python
parser. * mappingobject.c (lookmapping): 'freeslot' was never used due to a bug in the code.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r--Modules/config.c.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in
index c9f56ac2ed..b8fc15f07c 100644
--- a/Modules/config.c.in
+++ b/Modules/config.c.in
@@ -296,6 +296,9 @@ extern void initHTML();
#ifdef USE_XLIB
extern void initXlib();
#endif
+#ifdef USE_PARSER
+extern void initparser();
+#endif
/* -- ADDMODULE MARKER 1 -- */
struct {
@@ -475,6 +478,10 @@ struct {
{"Xlib", initXlib},
#endif
+#ifdef USE_PARSER
+ {"parser", initparser},
+#endif
+
/* -- ADDMODULE MARKER 2 -- */
{0, 0} /* Sentinel */