1. 02 Apr, 2016 2 commits
  2. 01 Apr, 2016 5 commits
  3. 31 Mar, 2016 4 commits
  4. 30 Mar, 2016 4 commits
  5. 29 Mar, 2016 4 commits
  6. 20 Nov, 2011 1 commit
  7. 28 Mar, 2016 1 commit
  8. 27 Mar, 2016 5 commits
  9. 14 Mar, 2016 1 commit
  10. 25 Mar, 2016 4 commits
  11. 22 Jan, 2016 1 commit
    • Victor Stinner's avatar
      Use Py_uintptr_t for atomic pointers · 244e1208
      Victor Stinner authored
      Issue #26161: Use Py_uintptr_t instead of void* for atomic pointers in
      pyatomic.h. Use atomic_uintptr_t when <stdatomic.h> is used.
      
      Using void* causes compilation warnings depending on which implementation of
      atomic types is used.
      244e1208
  12. 24 Mar, 2016 3 commits
  13. 23 Mar, 2016 3 commits
  14. 22 Mar, 2016 2 commits
    • Victor Stinner's avatar
      Enhance _tracemalloc debug mode · d5871e62
      Victor Stinner authored
      Issue #26588: Enhance assertion in set_reentrant()
      d5871e62
    • Victor Stinner's avatar
      Fix _tracemalloc start/stop · 2f49e091
      Victor Stinner authored
      Issue #26588: Fix _tracemalloc start/stop: don't play with the reentrant flag.
      
      set_reentrant(1) fails with an assertion error if tracemalloc_init() is called
      first in a thread A and tracemalloc_start() is called second in a thread B. The
      tracemalloc is imported in a thread A. Importing the module calls
      tracemalloc_init(). tracemalloc.start() is called in a thread B.
      2f49e091