- 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.
-
- 03 Ock, 2013 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
- 12 Eki, 2012 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
read or readall methods no longer lose data when an underlying read system call is interrupted within an io module object. IOError is no longer raised due to a read system call returning EINTR from within these methods. This is a backport of changeset 781b95159954 from 3.2. The earlier 2.7 changeset 67dc99a989cd already fixed this for the builtin python 2.x file object.
-
- 06 Tem, 2012 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
- 24 Haz, 2012 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
no longer lose data when an underlying read system call is interrupted. IOError is no longer raised due to a read system call returning EINTR from within these methods.
-
- 22 Haz, 2012 1 kayıt (commit)
-
-
Hynek Schlawack yazdı
If an identical code line is in both at the end of if and else, it can as well stand after the block. :) The code is from 464cf523485e, I didn't see it before checking the commits in the web interface of course.
-
- 21 Haz, 2012 2 kayıt (commit)
-
-
Hynek Schlawack yazdı
Loosely based on the work by Hirokazu Yamamoto.
-
Hynek Schlawack yazdı
Loosely based on the work by Hirokazu Yamamoto.
-
- 25 May, 2012 2 kayıt (commit)
-
-
Hynek Schlawack yazdı
Patch by Victor Stinner.
-
Hynek Schlawack yazdı
Patch by Victor Stinner.
-
- 17 Nis, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 29 Ock, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by Hynek Schlawack.
-
- 14 Ock, 2012 1 kayıt (commit)
-
-
Charles-François Natali yazdı
-
- 09 Ock, 2012 1 kayıt (commit)
-
-
Charles-François Natali yazdı
-
- 16 Ara, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Original patch by Hallvard B Furuseth.
-
- 14 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 31 Eki, 2011 1 kayıt (commit)
-
-
Ross Lagerwall yazdı
-
- 14 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 13 Eki, 2011 2 kayıt (commit)
-
-
Nadeem Vawda yazdı
Also fix the builtin file class and the bz2 module, which used the same algorithm.
-
Nadeem Vawda yazdı
Also fix the bz2 module, whose classes used the same algorithm.
-
- 11 Eki, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
Truncate the buffer size to PY_SSIZE_T_MAX.
-
Victor Stinner yazdı
Use Py_off_t type (64 bits) instead of off_t (32 bits).
-
- 09 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
-
- 29 Eyl, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 05 Tem, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
os.write() clamp the length to INT_MAX on Windows.
-
- 25 May, 2011 3 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
the file is closed.
-
Victor Stinner yazdı
the file is closed.
-
- 20 Mar, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if stdout mode is binary and the length is greater than 66,000 bytes (or less, depending on heap usage).
-
- 11 Ock, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 07 Ock, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
On Windows, set the binary mode on stdin, stdout, stderr and all io.FileIO objects (to not translate newlines, \r\n <=> \n). The Python parser translates newlines (\r\n => \n).
-
- 04 Ock, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
length to 2^31-1 on Windows.
-
- 26 Kas, 2010 2 kayıt (commit)
-
-
Georg Brandl yazdı
svn+ssh://svn.python.org/python/branches/py3k ........ r85728 | georg.brandl | 2010-10-19 20:54:25 +0200 (Di, 19 Okt 2010) | 1 line #10092: Properly reset locale in Locale*Calendar classes. The context manager was buggy because setlocale() returns the *new* locale, not the old. Also add a test for this. ........ r85731 | georg.brandl | 2010-10-19 23:07:16 +0200 (Di, 19 Okt 2010) | 1 line Be consistent in the spelling of thread-safe(ty). ........ r85735 | georg.brandl | 2010-10-20 08:50:19 +0200 (Mi, 20 Okt 2010) | 1 line Fix r85728: use "" to mean the system default locale, which should work on more systems. ........ r85766 | georg.brandl | 2010-10-21 09:40:03 +0200 (Do, 21 Okt 2010) | 1 line #10159: sort completion matches before comparing to dir() result. ........ r85767 | georg.brandl | 2010-10-21 14:49:28 +0200 (Do, 21 Okt 2010) | 1 line #9095, #8912, #8999: add support in patchcheck for Mercurial checkouts, C file reindenting, and docs whitespace fixing. ........ r85768 | georg.brandl | 2010-10-21 14:59:14 +0200 (Do, 21 Okt 2010) | 1 line #9919: fix off-by-one error in lineno command in Misc/gdbinit; also add newline to its output. ........ r85769 | georg.brandl | 2010-10-21 15:01:23 +0200 (Do, 21 Okt 2010) | 1 line Fix missing import. ........ r85770 | georg.brandl | 2010-10-21 15:29:10 +0200 (Do, 21 Okt 2010) | 1 line #3077: fix h2py substitution of character literals. ........ r85771 | georg.brandl | 2010-10-21 15:34:51 +0200 (Do, 21 Okt 2010) | 1 line #1203650: allow larger list of files in windows makefile for freeze. ........ r85773 | georg.brandl | 2010-10-21 15:45:52 +0200 (Do, 21 Okt 2010) | 1 line #4829: better error message for invalid file mode ........ r85777 | georg.brandl | 2010-10-21 17:44:51 +0200 (Do, 21 Okt 2010) | 1 line Add .hgeol file for the Mercurial EOL extension. ........
-
Georg Brandl yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85768 | georg.brandl | 2010-10-21 14:59:14 +0200 (Do, 21 Okt 2010) | 1 line #9919: fix off-by-one error in lineno command in Misc/gdbinit; also add newline to its output. ........ r85769 | georg.brandl | 2010-10-21 15:01:23 +0200 (Do, 21 Okt 2010) | 1 line Fix missing import. ........ r85770 | georg.brandl | 2010-10-21 15:29:10 +0200 (Do, 21 Okt 2010) | 1 line #3077: fix h2py substitution of character literals. ........ r85771 | georg.brandl | 2010-10-21 15:34:51 +0200 (Do, 21 Okt 2010) | 1 line #1203650: allow larger list of files in windows makefile for freeze. ........ r85773 | georg.brandl | 2010-10-21 15:45:52 +0200 (Do, 21 Okt 2010) | 1 line #4829: better error message for invalid file mode ........ r85777 | georg.brandl | 2010-10-21 17:44:51 +0200 (Do, 21 Okt 2010) | 1 line Add .hgeol file for the Mercurial EOL extension. ........ r85823 | georg.brandl | 2010-10-24 16:32:45 +0200 (So, 24 Okt 2010) | 1 line Fix style. ........ r85825 | georg.brandl | 2010-10-24 17:16:02 +0200 (So, 24 Okt 2010) | 1 line Add documentation about the default warnings filters. ........
-
- 05 Kas, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
unpickling them produced nonsensical results.
-
- 31 Eki, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85982 | antoine.pitrou | 2010-10-30 18:19:14 +0200 (sam., 30 oct. 2010) | 4 lines Issue #10253: FileIO leaks a file descriptor when trying to open a file for append that isn't seekable. Patch by Brian Brazil. ........
-