diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-09-04 05:04:25 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-09-04 05:04:25 (GMT) |
commit | 8a9583ec5c00384514fe9f5045866ad6ebd2be5a (patch) | |
tree | e360bd182c5c79d8dd3ca9147fce290b9efdda03 /Parser | |
parent | 451e99b393529b45db3b68daaf09925ea863bf1a (diff) | |
download | cpython-8a9583ec5c00384514fe9f5045866ad6ebd2be5a.zip cpython-8a9583ec5c00384514fe9f5045866ad6ebd2be5a.tar.gz cpython-8a9583ec5c00384514fe9f5045866ad6ebd2be5a.tar.bz2 |
PyTokenizer_FindEncoding() always failed because it set the tokenizer state
with only a file pointer when it called fp_setreadl() which expected a file
path. Changed fp_setreadl() to use either a file path or file descriptor
(derived from the file pointer) to fix the issue.
Closes issue 3594.
Reviewed by Antoine Pitrou and Benjamin Peterson.
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/tokenizer.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index e2da3e5..e4cf8e4 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -448,8 +448,12 @@ fp_setreadl(struct tok_state *tok, const char* enc) if (io == NULL) goto cleanup; - stream = PyObject_CallMethod(io, "open", "ssis", - tok->filename, "r", -1, enc); + if (tok->filename) + stream = PyObject_CallMethod(io, "open", "ssis", + tok->filename, "r", -1, enc); + else + stream = PyObject_CallMethod(io, "open", "isis", + fileno(tok->fp), "r", -1, enc); if (stream == NULL) goto cleanup; |