1. 13 Sep, 2015 2 commits
  2. 12 Sep, 2015 4 commits
  3. 11 Sep, 2015 7 commits
  4. 10 Sep, 2015 3 commits
  5. 09 Sep, 2015 5 commits
  6. 08 Sep, 2015 4 commits
  7. 07 Sep, 2015 8 commits
  8. 06 Sep, 2015 5 commits
  9. 05 Sep, 2015 1 commit
  10. 04 Sep, 2015 1 commit
    • Victor Stinner's avatar
      Fix race condition in create_stdio() · 676b7773
      Victor Stinner authored
      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.
      676b7773