1. 16 Ock, 2016 1 kayıt (commit)
  2. 08 Ara, 2015 1 kayıt (commit)
  3. 14 Eyl, 2015 1 kayıt (commit)
  4. 03 Eyl, 2015 2 kayıt (commit)
  5. 02 Eyl, 2015 2 kayıt (commit)
  6. 27 Mar, 2015 1 kayıt (commit)
    • Victor Stinner's avatar
      Issue #22117: Fix test_gdb for the new time.sleep() · 79644f9c
      Victor Stinner yazdı
      Use time.gmtime() instead of time.sleep(), because time.sleep() is no more
      declared with METH_VARARGS but with METH_O. time.gmtime() is still declared
      with METH_VARARGS and so it is called with PyCFunction_Call() which is the
      target of the test_gdb unit test.
      79644f9c
  7. 14 Şub, 2015 1 kayıt (commit)
  8. 06 Şub, 2015 1 kayıt (commit)
  9. 31 Ock, 2015 1 kayıt (commit)
  10. 16 Agu, 2014 1 kayıt (commit)
  11. 25 Kas, 2013 1 kayıt (commit)
  12. 24 Kas, 2013 3 kayıt (commit)
  13. 23 Kas, 2013 2 kayıt (commit)
  14. 21 Kas, 2013 1 kayıt (commit)
  15. 20 Kas, 2013 2 kayıt (commit)
  16. 22 Eyl, 2013 1 kayıt (commit)
  17. 21 Eyl, 2013 2 kayıt (commit)
  18. 27 Agu, 2013 1 kayıt (commit)
  19. 25 Haz, 2013 1 kayıt (commit)
  20. 30 Nis, 2013 1 kayıt (commit)
  21. 27 Eki, 2012 2 kayıt (commit)
  22. 21 Eyl, 2012 2 kayıt (commit)
  23. 27 Haz, 2012 1 kayıt (commit)
    • David Malcolm's avatar
      Issue #12605: Show information on more C frames within gdb backtraces · 8d37ffa5
      David Malcolm yazdı
      The gdb hooks for debugging CPython (within Tools/gdb) have
      been enhanced to show information on more C frames relevant to CPython within
      the "py-bt" and "py-bt-full" commands:
        * C frames that are waiting on the GIL
        * C frames that are garbage-collecting
        * C frames that are due to the invocation of a PyCFunction
      8d37ffa5
  24. 17 Haz, 2012 2 kayıt (commit)
  25. 06 May, 2012 1 kayıt (commit)
  26. 21 Şub, 2012 2 kayıt (commit)
  27. 05 Ock, 2012 1 kayıt (commit)
  28. 19 Ara, 2011 2 kayıt (commit)
    • Victor Stinner's avatar
      Issue #13628: python-gdb.py is now able to retrieve more frames in the Python · 99cff3f1
      Victor Stinner yazdı
      traceback if Python is optimized.
      
       * delay the lookup of the size_t type, it is not available at startup
       * The second argument of the PyFrameObjectPtr constructor is optional, as
         done in other constructors
       * iter_builtins() and iter_globals() methods of PyFrameObjectPtr returns
         an empty tuple instead of None if Python is optimized
       * Fix py-bt to handle correctly "optimized" frames
       * Frame.get_pyop() tries to get the frame pointer from PyEval_EvalCodeEx()
         if the pointer is optimized out in PyEval_EvalFrameEx()
      99cff3f1
    • Victor Stinner's avatar
      Issue #13628: python-gdb.py is now able to retrieve more frames in the Python · d208416a
      Victor Stinner yazdı
      traceback if Python is optimized.
      
       * delay the lookup of the size_t type, it is not available at startup
       * The second argument of the PyFrameObjectPtr constructor is optional, as
         done in other constructors
       * iter_builtins() and iter_globals() methods of PyFrameObjectPtr returns
         an empty tuple instead of None if Python is optimized
       * Fix py-bt and py-bt-full to handle correctly "optimized" frames
       * Frame.get_pyop() tries to get the frame pointer from PyEval_EvalCodeEx()
         if the pointer is optimized out in PyEval_EvalFrameEx()
      d208416a