1. 17 May, 2016 2 kayıt (commit)
  2. 08 May, 2016 1 kayıt (commit)
  3. 01 May, 2016 2 kayıt (commit)
  4. 28 Nis, 2016 2 kayıt (commit)
  5. 17 Nis, 2016 1 kayıt (commit)
  6. 15 Nis, 2016 1 kayıt (commit)
  7. 12 Nis, 2016 1 kayıt (commit)
    • Victor Stinner's avatar
      Fix os.urandom() on Solaris 11.3 · 9d24271d
      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.
      9d24271d
  8. 10 Nis, 2016 2 kayıt (commit)
  9. 06 Nis, 2016 1 kayıt (commit)
  10. 01 Ock, 2016 1 kayıt (commit)
  11. 07 Kas, 2015 1 kayıt (commit)
  12. 02 Kas, 2015 1 kayıt (commit)
  13. 10 Eki, 2015 1 kayıt (commit)
  14. 07 Eki, 2015 1 kayıt (commit)
  15. 01 Eki, 2015 2 kayıt (commit)
  16. 04 Eyl, 2015 1 kayıt (commit)
    • Victor Stinner's avatar
      Fix race condition in create_stdio() · 6fb5bae2
      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.
      6fb5bae2
  17. 27 Tem, 2015 1 kayıt (commit)
  18. 21 Haz, 2015 2 kayıt (commit)
  19. 10 Haz, 2015 1 kayıt (commit)
  20. 02 Haz, 2015 1 kayıt (commit)
  21. 03 May, 2015 1 kayıt (commit)
  22. 19 Nis, 2015 1 kayıt (commit)
  23. 30 May, 2015 1 kayıt (commit)
  24. 18 May, 2015 1 kayıt (commit)
  25. 07 May, 2015 1 kayıt (commit)
  26. 24 Nis, 2015 1 kayıt (commit)
  27. 19 Nis, 2015 1 kayıt (commit)
  28. 02 Nis, 2015 1 kayıt (commit)
  29. 30 Mar, 2015 1 kayıt (commit)
  30. 25 Mar, 2015 2 kayıt (commit)
  31. 24 Mar, 2015 2 kayıt (commit)
    • Victor Stinner's avatar
      Issue #23571: Py_FatalError() now tries to flush sys.stdout and sys.stderr · ec4f9592
      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.
      ec4f9592
    • Victor Stinner's avatar
      Issue #23571: Enhance Py_FatalError() · 0e98a76b
      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
      0e98a76b
  32. 14 Mar, 2015 1 kayıt (commit)