An error occurred fetching the project authors.
  1. 19 Aug, 2016 1 commit
  2. 26 May, 2016 1 commit
  3. 28 Feb, 2016 1 commit
  4. 25 Dec, 2015 2 commits
  5. 06 Sep, 2015 1 commit
  6. 04 Sep, 2015 1 commit
    • Victor Stinner's avatar
      Fix race condition in create_stdio() · 6fb5bae2
      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.
      6fb5bae2
  7. 27 Jul, 2015 1 commit
  8. 03 May, 2015 1 commit
  9. 13 Apr, 2015 1 commit
    • Brett Cannon's avatar
      Issue #23731: Implement PEP 488. · f299abda
      Brett Cannon authored
      The concept of .pyo files no longer exists. Now .pyc files have an
      optional `opt-` tag which specifies if any extra optimizations beyond
      the peepholer were applied.
      f299abda
  10. 25 Mar, 2015 1 commit
  11. 24 Mar, 2015 2 commits
    • Victor Stinner's avatar
      Issue #23571: Py_FatalError() now tries to flush sys.stdout and sys.stderr · ec4f9592
      Victor Stinner authored
      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 authored
      * 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
  12. 18 Mar, 2015 1 commit
  13. 22 Nov, 2014 2 commits
  14. 20 Nov, 2014 1 commit
  15. 05 Nov, 2014 2 commits
  16. 29 Aug, 2014 1 commit
    • Victor Stinner's avatar
      Issue #22043: _PyTime_Init() now checks if the system clock works. · 0011124d
      Victor Stinner authored
      Other changes:
      
      * The whole _PyTime API is private (not defined if Py_LIMITED_API is set)
      * _PyTime_gettimeofday_info() also returns -1 on error
      * Simplify PyTime_gettimeofday(): only use clock_gettime(CLOCK_REALTIME) or
        gettimeofday() on UNIX. Don't fallback to ftime() or time() anymore.
      0011124d
  17. 15 Aug, 2014 1 commit
  18. 11 May, 2014 1 commit
  19. 17 Apr, 2014 1 commit
    • doko@ubuntu.com's avatar
      Fixes for KFreeBSD and the Hurd: · 4a173bc4
      doko@ubuntu.com authored
      - Issue #21274: Define PATH_MAX for GNU/Hurd in Python/pythonrun.c.
      
      - Issue #21276: posixmodule: Don't define USE_XATTRS on KFreeBSD and the Hurd.
      
      - Issue #21275: Fix a socket test on KFreeBSD.
      4a173bc4
  20. 18 Mar, 2014 2 commits
  21. 13 Feb, 2014 2 commits
  22. 09 Feb, 2014 1 commit
  23. 21 Jan, 2014 1 commit
  24. 09 Dec, 2013 1 commit
  25. 01 Dec, 2013 1 commit
  26. 23 Nov, 2013 1 commit
  27. 20 Nov, 2013 1 commit
  28. 15 Nov, 2013 1 commit
  29. 12 Nov, 2013 3 commits
  30. 07 Nov, 2013 2 commits
  31. 06 Nov, 2013 1 commit