1. 27 Sep, 2017 1 commit
  2. 26 Sep, 2017 2 commits
  3. 25 Sep, 2017 3 commits
  4. 22 Sep, 2017 1 commit
  5. 20 Sep, 2017 1 commit
  6. 16 Sep, 2017 4 commits
  7. 15 Sep, 2017 2 commits
  8. 14 Sep, 2017 1 commit
  9. 13 Sep, 2017 2 commits
  10. 11 Sep, 2017 3 commits
  11. 10 Sep, 2017 2 commits
  12. 08 Sep, 2017 3 commits
  13. 07 Sep, 2017 5 commits
  14. 06 Sep, 2017 6 commits
  15. 05 Sep, 2017 4 commits
    • Victor Stinner's avatar
      bpo-31339: Rewrite time.asctime() and time.ctime() (#3293) · eeadf5fc
      Victor Stinner authored
      * bpo-31339: Rewrite time.asctime() and time.ctime()
      
      Backport and adapt the _asctime() function from the master branch to
      not depend on the implementation of asctime() and ctime() from the
      external C library. This change fixes a bug when Python is run using
      the musl C library.
      
      * bound checks for time.asctime()
      
      * bound checks for time.strftime()
      eeadf5fc
    • Zachary Ware's avatar
      bpo-30450: Don't use where, XP doesn't have it (GH-3348) · 8905fb83
      Zachary Ware authored
      Really this time!
      8905fb83
    • Gregory P. Smith's avatar
      bpo-27448: Work around a gc.disable race condition in subprocess. (#1932) · 5e8e3713
      Gregory P. Smith authored
      * bpo-27448: Work around a gc.disable race condition in subprocess.
      
      This works around a gc.isenabled/gc.disable race condition in the 2.7
      subprocess module by using a lock for the critical section.  It'll
      prevent multiple simultaneous subprocess launches from winding up with
      gc remaining disabled but it can't fix the ultimate problem: gc enable
      and disable is a global setting and a hack.
      
      Users are *strongly encouraged* to use subprocess32 from PyPI instead
      of the 2.7 standard library subprocess module.  Mixing threads with
      subprocess is a recipie for disaster otherwise even with "fixes" to
      ameliorate common issues like this.
      
      * Add a blurb!
      5e8e3713
    • Christian Heimes's avatar
      [2.7] Travis: use ccache (GH-3307) (#3333) · 9721e51d
      Christian Heimes authored
      (cherry picked from commit 8adc73c2)
      9721e51d