1. 01 May, 2019 11 commits
  2. 30 Apr, 2019 8 commits
  3. 29 Apr, 2019 16 commits
  4. 28 Apr, 2019 3 commits
  5. 27 Apr, 2019 2 commits
    • Berker Peksag's avatar
      21a9ba19
    • Paul Ganssle's avatar
      bpo-36025: Fix PyDate_FromTimestamp API (GH-11922) · 4d8c8c0a
      Paul Ganssle authored
      In the process of converting the date.fromtimestamp function to use
      argument clinic in GH-8535, the C API for PyDate_FromTimestamp was
      inadvertently changed to expect a timestamp object rather than an
      argument tuple.
      
      This PR fixes this backwards-incompatible change by adding a new wrapper
      function for the C API function that unwraps the argument tuple and
      passes it to the underlying function.
      
      This PR also adds tests for both PyDate_FromTimestamp and
      PyDateTime_FromTimestamp to prevent any further regressions.
      4d8c8c0a