- 08 May, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. Patch by akira.
-
- 29 Nis, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #21057: TextIOWrapper now allows the underlying binary stream's read() or read1() method to return an arbitrary bytes-like object (such as a memoryview). Patch by Nikolaus Rath.
-
- 16 Nis, 2014 1 kayıt (commit)
-
-
Andrew Kuchling yazdı
Patch by Caelyn McAulay. Neither Caelyn nor I could find any cases in 2.7 or 3.4/5 where an operation on a closed stream raised IOError; generally the C implementations have a macro to check for the stream being closed, and these macros all raised ValueError. If we find any, a new bug should be opened.
-
- 02 Mar, 2014 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 12 Şub, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Based on patch by Stephen Tu.
-
- 04 Şub, 2014 1 kayıt (commit)
-
-
Nick Coghlan yazdı
- io.TextIOWrapper (and hence the open() builtin) now use the internal codec marking system added for issue #19619 - also tweaked the C code to only look up the encoding once, rather than multiple times - the existing output type checks remain in place to deal with unmarked third party codecs.
-
- 21 Ara, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 23 Kas, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 12 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
Patch written by Andrei Dorian Duma.
-
- 07 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 06 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
literal string
-
- 29 Eki, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 23 Eki, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 11 Eki, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io module instead of the full locale module.
-
- 04 Eyl, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened. Patch by Erik Bray.
-
- 27 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
-
- 20 Agu, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Patch by Yogesh Chaudhari.
-
- 01 Agu, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 30 Tem, 2013 2 kayıt (commit)
-
-
Christian Heimes yazdı
CID 1058763
-
Antoine Pitrou yazdı
-
- 17 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
with an assertion error if they are called with an exception set (PyErr_Occurred()). If these functions are called with an exception set, the exception may be cleared and so the caller looses its exception. Add also assertions to PyEval_CallObjectWithKeywords() and call_function() to check if the function succeed with no exception set, or the function failed with an exception set.
-
- 16 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
bytes is NULL on _PyBytes_Resize() failure
-
- 15 Tem, 2013 1 kayıt (commit)
-
-
Richard Oudkerk yazdı
-
- 24 Haz, 2013 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
- 23 Haz, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 16 Haz, 2013 1 kayıt (commit)
-
-
Andrew Kuchling yazdı
Also, improve some docstring descriptions of the 'errors' parameter. Closes #14015.
-
- 28 May, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
stream's read() returns more bytes than requested.
-
- 17 May, 2013 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Richard Oudkerk yazdı
-
- 11 Mar, 2013 2 kayıt (commit)
-
-
Terry Jan Reedy yazdı
as reported by Serhiy Storchaka and Matthew Barnett.
-
Terry Jan Reedy yazdı
as reported by Serhiy Storchaka and Matthew Barnett.
-
- 24 Şub, 2013 2 kayıt (commit)
-
-
R David Murray yazdı
This fixes an apparent copy-and-paste error. Original patch by Manuel Jacob.
-
R David Murray yazdı
This fixes an apparent copy-and-paste error. Patch by Manuel Jacob.
-
- 03 Şub, 2013 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
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).
-
Serhiy Storchaka yazdı
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).
-
- 01 Şub, 2013 2 kayıt (commit)
-
-
Gregory P. Smith yazdı
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).
-
Gregory P. Smith yazdı
no longer abort early when one of its write system calls is interrupted (EINTR).
-
- 19 Ock, 2013 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
when result of PyInt_AsLong() or PyLong_AsLong() narrowed to int without checks. This is a backport of changesets 13e2e44db99d and 525407d89277.
-
Serhiy Storchaka yazdı
when result of PyLong_AsLong() narrowed to int without checks. This is a backport of changesets 13e2e44db99d and 525407d89277.
-