diff options
author | Guido van Rossum <guido@python.org> | 2007-06-07 00:54:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-06-07 00:54:15 (GMT) |
commit | 9cbfffd1a63ee944dedda758ac1d1963d4cbf3b1 (patch) | |
tree | 80f78198ee6b9b7bd28d1124d62438f7b796c10d /Parser/tokenizer.c | |
parent | e7ba4956272a7105ea90dd505f70e5947aa27161 (diff) | |
download | cpython-9cbfffd1a63ee944dedda758ac1d1963d4cbf3b1.zip cpython-9cbfffd1a63ee944dedda758ac1d1963d4cbf3b1.tar.gz cpython-9cbfffd1a63ee944dedda758ac1d1963d4cbf3b1.tar.bz2 |
tokenizer.c: make coding markup work again.
io.open() now takes all positional parameters (so we can conveniently
call it from C code).
test_tarfile.py no longer uses u"..." literals, but is otherwise still
badly broken.
This is a checkpoint; some more stuff now breaks.
Diffstat (limited to 'Parser/tokenizer.c')
-rw-r--r-- | Parser/tokenizer.c | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index a43094b..f3eeb2c 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -396,25 +396,29 @@ fp_readl(char *s, int size, struct tok_state *tok) static int fp_setreadl(struct tok_state *tok, const char* enc) { - PyObject *reader, *stream, *readline; + PyObject *readline = NULL, *stream = NULL, *io = NULL; + int ok = 0; - /* XXX: constify filename argument. */ - stream = PyFile_FromFile(tok->fp, (char*)tok->filename, "rb", NULL); - if (stream == NULL) - return 0; + io = PyImport_ImportModule("io"); + if (io == NULL) + goto cleanup; - reader = PyCodec_StreamReader(enc, stream, NULL); - Py_DECREF(stream); - if (reader == NULL) - return 0; + stream = PyObject_CallMethod(io, "open", "ssis", + tok->filename, "r", -1, enc); + if (stream == NULL) + goto cleanup; - readline = PyObject_GetAttrString(reader, "readline"); - Py_DECREF(reader); + readline = PyObject_GetAttrString(stream, "readline"); if (readline == NULL) - return 0; + goto cleanup; tok->decoding_readline = readline; - return 1; + ok = 1; + + cleanup: + Py_XDECREF(stream); + Py_XDECREF(io); + return ok; } /* Fetch the next byte from TOK. */ |