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 /Modules/xreadlinesmodule.c | |
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 'Modules/xreadlinesmodule.c')
-rw-r--r-- | Modules/xreadlinesmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/xreadlinesmodule.c b/Modules/xreadlinesmodule.c index c50dd06..dc74f5d 100644 --- a/Modules/xreadlinesmodule.c +++ b/Modules/xreadlinesmodule.c @@ -109,7 +109,7 @@ static PyMethodDef xreadlines_methods[] = { {NULL, NULL} }; -void +DL_EXPORT(void) initxreadlines(void) { PyObject *m; |