1. 4f4ef0a Add a test for pdb until command in coroutine (#5427) by Andrew Svetlov · 6 years ago
  2. 9ee1bf9 bpo-32650: Add an asyncgen pdb test (#5406) by Yury Selivanov · 6 years ago
  3. c7ab581 bpo-32650 Add support for async generators and more test for coroutines in pdb (#5403) by Pablo Galindo · 6 years ago
  4. 4687702 bpo-32650: Add native coroutine support to bdb when stepping over line (GH-5400) by Pablo Galindo · 6 years ago
  5. fcf8b4c bpo-32206: Update pdb usage to include new module option (GH-5111) by Mario Corchero · 6 years ago
  6. 9f1e5f1 bpo-32206: Pdb can now run modules (GH-4752) by Mario Corchero · 7 years ago
  7. 35425d6 bpo-31389 Add an optional `header` argument to pdb.set_trace() (#3438) by Barry Warsaw · 7 years ago
  8. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  9. 291417d Issue #20766: Merge with 3.5. by Xavier de Gaye · 8 years ago
  10. 10e54ae Issue #20766: Fix references leaked by pdb in the handling of SIGINT handlers. by Xavier de Gaye · 8 years ago
  11. 02e247f Issue #28338: Restore test_pdb doctests. by Xavier de Gaye · 8 years ago
  12. bc62626 Issue #18401: Fix test_pdb on Windows by Victor Stinner · 8 years ago
  13. 11ea044 Issue #18401: Fix test_pdb if $HOME is not set by Victor Stinner · 8 years ago
  14. 2eb6eca Issue #18401: pdb tests don't read ~/.pdbrc anymore by Łukasz Langa · 8 years ago
  15. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  16. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  17. e437a10 Issue #23277: Remove unused imports in tests. by Serhiy Storchaka · 8 years ago
  18. ca3f435 Issue #16180: Exit pdb if file has syntax error, instead of trapping user by Terry Jan Reedy · 9 years ago
  19. a16de5d Issue #23821: Fixed test_pdb failure under -O. by Serhiy Storchaka · 9 years ago
  20. 047b7ae Issue #22390: Remove files created by tests by Victor Stinner · 10 years ago
  21. c04d468 Issue #20746: Fix test_pdb to run in refleak mode (-R). Patch by Xavier de Gaye. by Antoine Pitrou · 10 years ago
  22. 8820c23 Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier de Gaye. by Guido van Rossum · 11 years ago
  23. 6e22055 pdb: modernize find_function() and add tests for it. by Georg Brandl · 11 years ago
  24. 78d692f 18764: remove the problematic 'print' alias for the PDB 'p' command. by R David Murray · 11 years ago
  25. 9529fbf Issue #17177: Stop using imp in a bunch of tests by Brett Cannon · 11 years ago
  26. f0efea0 Issue #17463: Fix test discovery for test_pdb.py by Andrew Svetlov · 11 years ago
  27. f0eb7ad Merge: skip pdb test for #13120 if threading is not available. by Andrew Svetlov · 12 years ago
  28. 96bc043 Skip pdb test for #13120 if threading is not available. by Andrew Svetlov · 12 years ago
  29. 1dfb5c1 Merge issue #13120: Allow to call pdb.set_trace() from thread. by Andrew Svetlov · 12 years ago
  30. 539ee5d Issue #13120: Allow to call pdb.set_trace() from thread. by Andrew Svetlov · 12 years ago
  31. b4c8902 #13183: backport fixes to test_pdb to 3.2 branch by Georg Brandl · 12 years ago
  32. 67880cc Issue #13183: Revert 0b53b70a40a0 (reenable test on windows) by Martin v. Löwis · 12 years ago
  33. bf6c195 fix closes issue13183 - windows test failure by Senthil Kumaran · 12 years ago
  34. cb17204 fix windows test failure - issue13183 by Senthil Kumaran · 12 years ago
  35. b613a3d Disable test_13183 temporarily on Windows for 3.3a3 release. by Georg Brandl · 12 years ago
  36. 4bde9ca test_pdb: fix failure of test_issue13183 in debug mode, and make sure files are cleaned up. by Georg Brandl · 12 years ago
  37. 417c384 issue13183 - Fix pdb skipping frames after hitting a breakpoint and running step. Patch by Xavier de Gaye by Senthil Kumaran · 12 years ago
  38. 42d7081 issue13183 - Fix pdb skipping frames after hitting a breakpoint and running step. Patch by Xavier de Gaye by Senthil Kumaran · 12 years ago
  39. 31f5929 Issue #10990: Prevent tests from clobbering a set trace function. by Brett Cannon · 13 years ago
  40. 34748cd Fix test suite to not activate new sigint behavior in pdb. by Georg Brandl · 14 years ago
  41. 6f10704 Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. by Senthil Kumaran · 14 years ago
  42. 994ad6c Fix ResourceWarning from subprocess pipe. by Brian Curtin · 14 years ago
  43. a8fbc6a Import test_pdb with its full name, so that running python -m test.test_pdb succeeds. by Georg Brandl · 14 years ago
  44. e1e8df1 Fix pdb test failures on the buildbots. by Georg Brandl · 14 years ago
  45. 0a9c3e9 Show the traceback line numbers as well as the current line numbers if an exception is being debugged. Courtesy of pdb++ by Antonio Cuni. Also document -> and >> markers for "list". by Georg Brandl · 14 years ago
  46. cdf66a9 Test that "source" with nonexisting things works as expected. by Georg Brandl · 14 years ago
  47. e59ca2a Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni. by Georg Brandl · 14 years ago
  48. 0d08962 Several enhancements to pdb and its test suite. by Georg Brandl · 14 years ago
  49. 6cccb86 #7964 followup: add test case to ensure issue remains fixed. by Georg Brandl · 14 years ago
  50. 7410dd1 #809887: improve pdb feedback for breakpoint-related actions. Also add a functional test for these commands. by Georg Brandl · 14 years ago
  51. 3f94089 #5294: Fix the behavior of pdb "continue" command when called in the top-level debugged frame. by Georg Brandl · 14 years ago
  52. 46b9afc #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug in exec() that made this necessary has been fixed. Also document that you can give code objects to run() and runeval(), and add some tests to test_pdb. by Georg Brandl · 14 years ago
  53. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  54. 9fa2e02 Merged revisions 74838-74839 via svnmerge from by Georg Brandl · 15 years ago
  55. 243ad66 Merged revisions 72322 via svnmerge from by Georg Brandl · 15 years ago