Benjamin Peterson
|
bbd0a323ae
|
clear BufferedRWPair weakrefs on deallocation (closes #22517)
|
2014-09-29 22:46:57 -04:00 |
|
Georg Brandl
|
2fc8f773e1
|
Issue #20404: reject non-text encodings early in TextIOWrapper.
|
2014-03-02 09:18:31 +01:00 |
|
Serhiy Storchaka
|
61e2493b83
|
Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.
Based on patch by Stephen Tu.
|
2014-02-12 10:52:35 +02:00 |
|
Antoine Pitrou
|
09fcb72048
|
Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers.
|
2013-10-23 19:20:21 +02:00 |
|
Antoine Pitrou
|
e93b63b74b
|
Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened.
Patch by Erik Bray.
|
2013-09-04 20:46:33 +02:00 |
|
Serhiy Storchaka
|
ec67d187ee
|
Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.
Patch by Yogesh Chaudhari.
|
2013-08-20 20:04:47 +03:00 |
|
Richard Oudkerk
|
9ad51ec81b
|
Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().
|
2013-07-15 16:05:22 +01:00 |
|
Christian Heimes
|
91e8b8180d
|
Check for correct macro, code uses S_ISDIR().
|
2013-06-23 23:51:44 +02:00 |
|
Andrew Kuchling
|
c7b6c50f29
|
Describe 'surrogateescape' in the documentation.
Also, improve some docstring descriptions of the 'errors' parameter.
Closes #14015.
|
2013-06-16 12:58:48 -04:00 |
|
Serhiy Storchaka
|
37a79a12d1
|
Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw
stream's read() returns more bytes than requested.
|
2013-05-28 16:24:45 +03:00 |
|
Terry Jan Reedy
|
09b7503bc9
|
Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4
Modules/*, as reported by Serhiy Storchaka and Matthew Barnett.
|
2013-03-11 17:45:12 -04:00 |
|
Terry Jan Reedy
|
0158af38b7
|
Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,
as reported by Serhiy Storchaka and Matthew Barnett.
|
2013-03-11 17:42:46 -04:00 |
|
R David Murray
|
9f10f56d13
|
Merge #17275: Fix class name in init errors in C bufferedio classes.
This fixes an apparent copy-and-paste error.
Patch by Manuel Jacob.
|
2013-02-23 22:07:55 -05:00 |
|
R David Murray
|
67bfe80758
|
#17275: Fix class name in init errors in C bufferedio classes.
This fixes an apparent copy-and-paste error.
Patch by Manuel Jacob.
|
2013-02-23 21:51:05 -05:00 |
|
Serhiy Storchaka
|
d03ce4ae3d
|
Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying
stream or a decoder produces data of an unexpected type (i.e. when
io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec).
|
2013-02-03 17:07:32 +02:00 |
|
Serhiy Storchaka
|
94dc6736bd
|
Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying
stream or a decoder produces data of an unexpected type (i.e. when
io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec).
|
2013-02-03 17:03:31 +02:00 |
|
Gregory P. Smith
|
99ec7f6f3e
|
Additional fix for issue #12268: The io module file object write methods no
longer abort early when a write system call is interrupted (EINTR).
|
2013-02-01 13:08:23 -08:00 |
|
Gregory P. Smith
|
b9817b01ed
|
Additional fix for Issue #12268: The io module file object writelines() methods no longer abort early when one of its write system calls is interrupted (EINTR).
|
2013-02-01 13:03:39 -08:00 |
|
Serhiy Storchaka
|
441d30fac7
|
Issue #15989: Fix several occurrences of integer overflow
when result of PyLong_AsLong() narrowed to int without checks.
This is a backport of changesets 13e2e44db99d and 525407d89277.
|
2013-01-19 12:26:26 +02:00 |
|
Serhiy Storchaka
|
9101e23ff6
|
Issue #15989: Fix several occurrences of integer overflow
when result of PyLong_AsLong() narrowed to int without checks.
This is a backport of changesets 13e2e44db99d and 525407d89277.
|
2013-01-19 12:41:45 +02:00 |
|
Victor Stinner
|
6f84659e5e
|
(Merge 3.2) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB.
|
2013-01-03 03:37:47 +01:00 |
|
Victor Stinner
|
c44057dfbd
|
Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB
|
2013-01-03 03:33:21 +01:00 |
|
Benjamin Peterson
|
68623614f0
|
call close on the underlying stream even if flush raises (closes #16597)
Patch by Serhiy Storchaka.
|
2012-12-20 11:53:11 -06:00 |
|
Andrew Svetlov
|
5b89840d9c
|
Issue #16714: use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
|
2012-12-18 21:26:36 +02:00 |
|
Andrew Svetlov
|
737fb89dd1
|
Issue #16714: use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
|
2012-12-18 21:14:22 +02:00 |
|