diff options
author | Guido van Rossum <guido@python.org> | 1993-11-10 12:53:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-11-10 12:53:24 (GMT) |
commit | 52f2c05401ab13eab45a91d39089866f55ef3c9b (patch) | |
tree | ae73dc8f72a56cc6c15ae30e9b2e78ef654ae20c /Modules/config.c.in | |
parent | a3d78fb268da5cf7cd4d990cf118bfc01650a8d9 (diff) | |
download | cpython-52f2c05401ab13eab45a91d39089866f55ef3c9b.zip cpython-52f2c05401ab13eab45a91d39089866f55ef3c9b.tar.gz cpython-52f2c05401ab13eab45a91d39089866f55ef3c9b.tar.bz2 |
* 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.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index c9f56ac..b8fc15f 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 */ |