Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.

Patch by Yogesh Chaudhari.
This commit is contained in:
Serhiy Storchaka 2013-08-20 20:07:50 +03:00
commit edd0de58a8
2 changed files with 4 additions and 1 deletions

View File

@ -284,6 +284,9 @@ Core and Builtins
Library
-------
- Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit
platforms. Patch by Yogesh Chaudhari.
- Issue #18681: Fix a NameError in importlib.reload() (noticed by Weizhao Li).
- Issue #14323: Expanded the number of digits in the coefficients for the

View File

@ -2368,7 +2368,7 @@ textiowrapper_tell(textio *self, PyObject *args)
while (input < input_end) {
Py_ssize_t n;
DECODER_DECODE(input, 1, n);
DECODER_DECODE(input, (Py_ssize_t)1, n);
/* We got n chars for 1 byte */
chars_decoded += n;
cookie.bytes_to_feed += 1;