- 04 Oct, 2011 1 commit
-
-
Antoine Pitrou authored
if the underlying raw stream is unseekable, even if the seek could be satisfied using the internal buffer. Patch by John O'Connor.
-
- 28 Sep, 2011 1 commit
-
-
Ezio Melotti authored
-
- 03 Sep, 2011 1 commit
-
-
Benjamin Peterson authored
-
- 20 Aug, 2011 1 commit
-
-
Antoine Pitrou authored
could appear on BufferedRandom streams.
-
- 19 Aug, 2011 1 commit
-
-
Antoine Pitrou authored
-
- 23 Jul, 2011 1 commit
-
-
Antoine Pitrou authored
a read1() method), and add an undocumented *write_through* parameter to mandate unbuffered writes.
-
- 12 Jul, 2011 1 commit
-
-
Antoine Pitrou authored
cleared by the garbage collector. This fixes a segfault when an instance and its type get caught in a reference cycle, and the instance's deallocator calls one of the methods on the type (e.g. when subclassing IOBase). Diagnosis and patch by Davide Rizzo.
-
- 04 Jul, 2011 2 commits
-
-
Victor Stinner authored
On FreeBSD, the SIGALRM signal is sometimes received by the reader thread.
-
Victor Stinner authored
On FreeBSD, the SIGALRM signal is sometimes received by the reader thread.
-
- 29 May, 2011 1 commit
-
-
Charles-François Natali authored
underlying OS pipe buffer size.
-
- 25 May, 2011 2 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
the file is closed.
-
- 12 May, 2011 1 commit
-
-
Antoine Pitrou authored
on a file opened in read+write mode (namely: reading, seeking a bit forward, writing, then seeking before the previous write but still within buffered data, and writing again).
-
- 11 May, 2011 1 commit
-
-
Antoine Pitrou authored
Patch by John O'Connor.
-
- 30 Apr, 2011 1 commit
-
-
Victor Stinner authored
and/or change the signal mask of the calling thread. Fix also tests of test_io using threads and an alarm: use pthread_sigmask() to ensure that the SIGALRM signal is received by the main thread. Original patch written by Jean-Paul Calderone.
-
- 25 Feb, 2011 3 commits
-
-
Antoine Pitrou authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88610 | antoine.pitrou | 2011-02-25 22:24:11 +0100 (ven., 25 févr. 2011) | 4 lines Issue #10956: Buffered I/O classes retry reading or writing after a signal has arrived and the handler returned successfully. ........
-
Antoine Pitrou authored
has arrived and the handler returned successfully.
-
Marc-André Lemburg authored
'latin-1' and 'utf-8'. These are optimized in the Python Unicode implementation to result in more direct processing, bypassing the codec registry. Also see issue11303.
-
- 21 Feb, 2011 1 commit
-
-
Brett Cannon authored
Many tests simply didn't care if they unset a pre-existing trace function. This made test coverage impossible. This patch fixes various tests to put back any pre-existing trace function. It also introduces test.support.no_tracing as a decorator which will temporarily unset the trace function for tests which simply fail otherwise. Thanks to Kristian Vlaardingerbroek for helping to find the cause of various trace function unsets.
-
- 09 Jan, 2011 1 commit
-
-
Antoine Pitrou authored
if available. (at Georg's request)
-
- 21 Dec, 2010 2 commits
-
-
Antoine Pitrou authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87427 | antoine.pitrou | 2010-12-21 22:20:59 +0100 (mar., 21 déc. 2010) | 3 lines Issue #10750: The `raw` attribute of buffered IO objects is now read-only. ........
-
Antoine Pitrou authored
-
- 03 Dec, 2010 2 commits
-
-
Antoine Pitrou authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86981 | antoine.pitrou | 2010-12-03 19:41:39 +0100 (ven., 03 déc. 2010) | 5 lines Issue #10478: Reentrant calls inside buffered IO objects (for example by way of a signal handler) now raise a RuntimeError instead of freezing the current process. ........ r86984 | antoine.pitrou | 2010-12-03 20:14:17 +0100 (ven., 03 déc. 2010) | 3 lines Add an "advanced topics" section to the io doc. ........
-
Antoine Pitrou authored
way of a signal handler) now raise a RuntimeError instead of freezing the current process.
-
- 21 Nov, 2010 1 commit
-
-
Ezio Melotti authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
-
- 20 Nov, 2010 1 commit
-
-
Ezio Melotti authored
-
- 05 Nov, 2010 1 commit
-
-
Antoine Pitrou authored
unpickling them produced nonsensical results.
-
- 31 Oct, 2010 3 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 29 Oct, 2010 2 commits
-
-
Brett Cannon authored
-
Antoine Pitrou authored
deallocated without explicit closing. These warnings are silenced by default, except in pydebug mode.
-
- 14 Oct, 2010 2 commits
-
-
Antoine Pitrou authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85482 | antoine.pitrou | 2010-10-14 17:34:31 +0200 (jeu., 14 oct. 2010) | 4 lines Replace the "compiler" resource with the more generic "cpu", so as to mark CPU-heavy tests. ........
-
Antoine Pitrou authored
as to mark CPU-heavy tests.
-
- 14 Sep, 2010 2 commits
-
-
Antoine Pitrou authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84814 | antoine.pitrou | 2010-09-14 20:37:24 +0200 (mar., 14 sept. 2010) | 4 lines Issue #9854: The default read() implementation in io.RawIOBase now handles non-blocking readinto() returning None correctly. ........
-
Antoine Pitrou authored
handles non-blocking readinto() returning None correctly.
-
- 05 Sep, 2010 1 commit
-
-
Antoine Pitrou authored
unsupported operation is attempted (for example, writing to a file open only for reading).
-
- 01 Sep, 2010 1 commit
-
-
Antoine Pitrou authored
frombytes() and tobytes(), respectively, to avoid confusion. Furthermore, array.frombytes(), array.extend() as well as the array.array() constructor now accept bytearray objects. Patch by Thomas Jollans.
-
- 21 Aug, 2010 2 commits
-
-
Antoine Pitrou authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84239 | antoine.pitrou | 2010-08-21 21:09:32 +0200 (sam., 21 août 2010) | 4 lines Issue #9617: Signals received during a low-level write operation aren't ignored by the buffered IO layer anymore. ........
-
Antoine Pitrou authored
ignored by the buffered IO layer anymore.
-