1. 29 Apr, 2019 10 commits
  2. 28 Apr, 2019 3 commits
  3. 27 Apr, 2019 4 commits
  4. 26 Apr, 2019 15 commits
  5. 25 Apr, 2019 6 commits
  6. 24 Apr, 2019 2 commits
    • Victor Stinner's avatar
      bpo-36465: Fix test_regrtest on Windows (GH-12945) · 235e7b2b
      Victor Stinner authored
      Fix Py_DEBUG constant: check for sys.gettotalrefcount attribute
      rather than sys.getobjects.
      
      Update also SpecialBuilds.txt documentation.
      235e7b2b
    • Victor Stinner's avatar
      bpo-36465: Make release and debug ABI compatible (GH-12615) · f4e4703e
      Victor Stinner authored
      Release build and debug build are now ABI compatible: the Py_DEBUG
      define no longer implies Py_TRACE_REFS define which introduces the
      only ABI incompatibility.
      
      A new "./configure --with-trace-refs" build option is now required to
      get Py_TRACE_REFS define which adds sys.getobjects() function and
      PYTHONDUMPREFS environment variable.
      
      Changes:
      
      * Add ./configure --with-trace-refs
      * Py_DEBUG no longer implies Py_TRACE_REFS
      f4e4703e