1. 26 Nov, 2018 8 commits
  2. 25 Nov, 2018 4 commits
  3. 24 Nov, 2018 1 commit
  4. 23 Nov, 2018 13 commits
  5. 22 Nov, 2018 11 commits
  6. 21 Nov, 2018 3 commits
    • Victor Stinner's avatar
      bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642) · f1d002c1
      Victor Stinner authored
      Enhance _PyObject_AssertFailed()
      
      * Exchange 'expr' and 'msg' parameters
      * 'expr' and 'func' arguments can now be NULL
      f1d002c1
    • Victor Stinner's avatar
      bpo-35081: Add Include/internal/pycore_object.h (GH-10640) · bcda8f1d
      Victor Stinner authored
      Move _PyObject_GC_TRACK() and _PyObject_GC_UNTRACK() from
      Include/objimpl.h to Include/internal/pycore_object.h.
      bcda8f1d
    • Victor Stinner's avatar
      bpo-35189: Fix eintr_tester.py (GH-10637) · aac1f81e
      Victor Stinner authored
      Call setitimer() before each test method, instead of once per test
      case, to ensure that signals are sent in each test method.
      Previously, only the first method of a testcase class got signals.
      
      Changes:
      
      * Replace setUpClass() with setUp() and replace tearDownClass() with
        tearDown().
      * tearDown() now ensures that at least one signal has been sent.
      * Replace support.run_unittest() with unittest.main() which has
        a nicer CLI and automatically discover test cases.
      aac1f81e