mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
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.
This commit is contained in:
parent
675e1d0a0d
commit
58c82f0b56
4 changed files with 15 additions and 10 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue