diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-09 23:26:39 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-09 23:26:39 (GMT) |
commit | 58c82f0b56e79e1682018dbb22fa1afd4f67a464 (patch) | |
tree | d4fd55851b0c48994847cba74aab34bb50777094 /PC | |
parent | 675e1d0a0dc4b55a63b2d70ed4e501d2a222bb46 (diff) | |
download | cpython-58c82f0b56e79e1682018dbb22fa1afd4f67a464.zip cpython-58c82f0b56e79e1682018dbb22fa1afd4f67a464.tar.gz cpython-58c82f0b56e79e1682018dbb22fa1afd4f67a464.tar.bz2 |
Assorted xreadlines problems:
Wasn't built on Windows; not in config.c either.
Module init function missing DL_EXPORT magic.
test_xreadline output file obviously wrong (started w/ "test_xrl").
test program very unclear about what was expected.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index 6d6a79f..c96eb26 100644 --- a/PC/config.c +++ b/PC/config.c @@ -42,7 +42,9 @@ extern void initmsvcrt(void); extern void init_locale(void); #endif extern void init_codecs(void); +extern void initxreadlines(void); +/* XXX tim: what's the purpose of ADDMODULE MARKER? */ /* -- ADDMODULE MARKER 1 -- */ extern void PyMarshal_Init(void); @@ -92,7 +94,9 @@ struct _inittab _PyImport_Inittab[] = { #endif {"_codecs", init_codecs}, + {"xreadlines", initxreadlines}, +/* XXX tim: what's the purpose of ADDMODULE MARKER? */ /* -- ADDMODULE MARKER 2 -- */ /* This module "lives in" with marshal.c */ |