summaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-01-09 23:26:39 +0000
committerTim Peters <tim.peters@gmail.com>2001-01-09 23:26:39 +0000
commit1ed9eed050a441a2d6ff0d3a51700dddfdd79670 (patch)
tree5d5ba2e04084e8f9a6990ce657f415a796d68a52 /PC
parentc2864d6bf3fcbba0be1eee3285b06e6b8c527b13 (diff)
downloadcpython-1ed9eed050a441a2d6ff0d3a51700dddfdd79670.tar.gz
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.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c
index 6d6a79fc2c..c96eb26af1 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 */