- 17 May, 2016 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
Patch by Xiang Zhang.
-
- 08 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 01 May, 2016 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Berker Peksag yazdı
Patch by Ofer Schwarz.
-
- 28 Nis, 2016 2 kayıt (commit)
-
-
Zachary Ware yazdı
-
Zachary Ware yazdı
-
- 17 Nis, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 15 Nis, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
This affects documentation, code comments, and a debugging messages.
-
- 12 Nis, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26735: Fix os.urandom() on Solaris 11.3 and newer when reading more than 1,024 bytes: call getrandom() multiple times with a limit of 1024 bytes per call.
-
- 10 Nis, 2016 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
in places where Py_DECREF was used.
-
Serhiy Storchaka yazdı
error handler for stdin and stdout.
-
- 06 Nis, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 01 Ock, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 07 Kas, 2015 1 kayıt (commit)
-
-
Martin Panter yazdı
This avoids possible buffer overreads when int(), float(), compile(), exec() and eval() are passed bytes-like objects. Similar code is removed from the complex() constructor, where it was not reachable. Patch by John Leitch, Serhiy Storchaka and Martin Panter.
-
- 02 Kas, 2015 1 kayıt (commit)
-
-
Martin Panter yazdı
This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar.
-
- 10 Eki, 2015 1 kayıt (commit)
-
-
Martin Panter yazdı
Also factored out some test cases into a new PtyTests class.
-
- 07 Eki, 2015 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 01 Eki, 2015 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
longer formatted twice.
-
Victor Stinner yazdı
getentropy() is blocking, whereas os.urandom() should not block. getentropy() is supported since Solaris 11.3.
-
- 04 Eyl, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #24891: Fix a race condition at Python startup if the file descriptor of stdin (0), stdout (1) or stderr (2) is closed while Python is creating sys.stdin, sys.stdout and sys.stderr objects. These attributes are now set to None if the creation of the object failed, instead of raising an OSError exception. Initial patch written by Marco Paolini.
-
- 27 Tem, 2015 1 kayıt (commit)
-
-
Berker Peksag yazdı
Patch by Louis Dassy.
-
- 21 Haz, 2015 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Patch by Michael Ensslin.
-
- 10 Haz, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 02 Haz, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 03 May, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 19 Nis, 2015 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 30 May, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly.
-
- 18 May, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 07 May, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 24 Nis, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 19 Nis, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 02 Nis, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Patch by Martin Panter.
-
- 30 Mar, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
(OpenBSD 5.6+).
-
- 25 Mar, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
close the binary file to fix a resource warning.
-
Victor Stinner yazdı
Flushing sys.stdout and sys.stderr in Py_FatalError() can call again Py_FatalError(). Add a reentrant flag to detect this case and just abort at the second call.
-
- 24 Mar, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
It should help to see exceptions when stderr if buffered: PyErr_Display() calls sys.stderr.write(), it doesn't write into stderr file descriptor directly.
-
Victor Stinner yazdı
* Display the current Python stack if an exception was raised but the exception has no traceback * Disable faulthandler if an exception was raised (before it was only disabled if no exception was raised) * To display the current Python stack, call PyGILState_GetThisThreadState() which works even if the GIL was released
-
- 14 Mar, 2015 1 kayıt (commit)
-
-
Steve Dower yazdı
-