- 30 Eyl, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
Restore also errno value before calling PyErr_SetFromErrno().
-
Serhiy Storchaka yazdı
imported at startup) now uses the backslashreplace error handler.
-
- 24 Mar, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 19 Mar, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
EINTR error and special cases for Windows. These functions now truncate the length to PY_SSIZE_T_MAX to have a portable and reliable behaviour. For example, read() result is undefined if counter is greater than PY_SSIZE_T_MAX on Linux.
-
- 19 Eki, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 27 Agu, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
error messages and comments.
-
- 24 Haz, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 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.
-
- 14 Ock, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
when result of PyLong_AsLong() narrowed to int without checks.
-
- 02 Ock, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 26 Haz, 2012 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
They 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.
-
- 05 Nis, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #14505: Fix file descriptor leak when deallocating file objects created with PyFile_FromString().
-
- 11 Mar, 2012 2 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
- 14 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 13 Eki, 2011 1 kayıt (commit)
-
-
Nadeem Vawda yazdı
Also fix the builtin file class and the bz2 module, which used the same algorithm.
-
- 10 Eki, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 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.
-
- 28 Eyl, 2011 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 23 Eyl, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
than a Python module (e.g. "__init__.py"): don't close the file twice. PyFile_FromFile() does also close the file if PyString_FromString() failed. It did already close the file on fill_file_fields() error (e.g. if the file is a directory).
-
- 22 Şub, 2011 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 04 Ock, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 28 Eki, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
object with custom buffering from two threads at once.
-
- 16 Eki, 2010 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 08 Eyl, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
encoding and errors attributes instead of using utf-8 in strict mode, to get the same behaviour than the print statement.
-
- 13 Agu, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
This function is only by imp.find_module() which does return the filename in a separated variable.
-
- 17 May, 2010 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81275 | antoine.pitrou | 2010-05-17 21:56:59 +0200 (lun., 17 mai 2010) | 4 lines Issue #7079: Fix a possible crash when closing a file object while using it from another thread. Patch by Daniel Stutzbach. ........
-
Antoine Pitrou yazdı
it from another thread. Patch by Daniel Stutzbach.
-
- 09 May, 2010 4 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines Recorded merge of revisions 81029 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........ ................
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
-
Antoine Pitrou yazdı
-
- 30 Nis, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
PyUnicode_FromString() to support surrogates in the filename and use the right encoding
-
- 03 Nis, 2010 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 22 Şub, 2010 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 05 Şub, 2010 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77989 | antoine.pitrou | 2010-02-05 18:05:54 +0100 (ven., 05 févr. 2010) | 6 lines Issue #5677: Explicitly forbid write operations on read-only file objects, and read operations on write-only file objects. On Windows, the system C library would return a bogus result; on Solaris, it was possible to crash the interpreter. Patch by Stefan Krah. ........
-
Antoine Pitrou yazdı
and read operations on write-only file objects. On Windows, the system C library would return a bogus result; on Solaris, it was possible to crash the interpreter. Patch by Stefan Krah.
-
- 29 Haz, 2009 1 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
-
- 28 Haz, 2009 1 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
-