1. 27 Jun, 2017 2 commits
  2. 26 Jun, 2017 8 commits
  3. 25 Jun, 2017 3 commits
  4. 24 Jun, 2017 6 commits
  5. 23 Jun, 2017 15 commits
  6. 22 Jun, 2017 4 commits
  7. 21 Jun, 2017 2 commits
    • Dino Viehland's avatar
      bpo-30604: clean up co_extra support (#2144) · f3cffd2b
      Dino Viehland authored
      bpo-30604: port fix from 3.6 dropping binary compatibility tweaks
      f3cffd2b
    • haney's avatar
      bpo-30183: Fixes HP-UX cc compilation error in pytime.c (#1351) · c90e9601
      haney authored
      * bpo-30183: Fixes HP-UX cc compilation error in pytime.c
      
      HP-UX does not support the CLOCK_MONOTONIC identifier, and will fail to
      compile:
      
          "Python/pytime.c", line 723: error #2020: identifier
          "CLOCK_MONOTONIC" is undefined
                const clockid_t clk_id = CLOCK_MONOTONIC;
      
      Add a new section for __hpux that calls 'gethrtime()' instead of
      'clock_gettime()'.
      
      * bpo-30183: Removes unnecessary return
      c90e9601