1. 8820c23 Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier de Gaye. by Guido van Rossum · 11 years ago
  2. 42d7081 issue13183 - Fix pdb skipping frames after hitting a breakpoint and running step. Patch by Xavier de Gaye by Senthil Kumaran · 12 years ago
  3. 4bd8172 Issue #10492: bdb.Bdb.run() only traces the execution of the code by Victor Stinner · 13 years ago
  4. f8b893e Fix accidental checkin. by Georg Brandl · 13 years ago
  5. 44f2b64 #7245: Add a SIGINT handler on continue in pdb that allows to break a program again by pressing Ctrl-C. by Georg Brandl · 13 years ago
  6. ac9a2bb Use booleans where applicable. by Georg Brandl · 13 years ago
  7. 2660747 Code style cleanup in bdb. by Georg Brandl · 13 years ago
  8. 6f10704 Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. by Senthil Kumaran · 13 years ago
  9. 9aed6cc Modernize code in effective(). by Georg Brandl · 14 years ago
  10. d2fd4ca Add Breakpoint.bpformat(), which returns the info usually printed by bpprint(). Necessary for major refactoring of pdb output handling. by Georg Brandl · 14 years ago
  11. 7410dd1 #809887: improve pdb feedback for breakpoint-related actions. Also add a functional test for these commands. by Georg Brandl · 14 years ago
  12. 3f94089 #5294: Fix the behavior of pdb "continue" command when called in the top-level debugged frame. by Georg Brandl · 14 years ago
  13. 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
  14. 2dfec55 Allow giving an explicit line number to "until". by Georg Brandl · 14 years ago
  15. 243ad66 Merged revisions 72322 via svnmerge from by Georg Brandl · 15 years ago
  16. f088e5e Merged revisions 67750-67751 via svnmerge from by Nick Coghlan · 15 years ago
  17. 1a6e0d0 Merged revisions 66974,66977,66984,66989,66992,66994-66996,66998-67000,67007,67015 via svnmerge from by Benjamin Peterson · 16 years ago
  18. 1f2ba4b Rename the repr module to reprlib. by Alexandre Vassalotti · 16 years ago
  19. 5f8ced2 Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from by Alexandre Vassalotti · 16 years ago
  20. ede8ffb Merged revisions 62018 via svnmerge from by Martin v. Löwis · 16 years ago
  21. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  22. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  23. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  24. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  25. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  26. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  27. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  28. 84a6c20 Bug #1055168: calling pdb.set_trace() calls Bdb.set_trace, which made by Johannes Gijsbers · 20 years ago
  29. 2ef7e6c SF bug #1052503: pdb runcall should accept keyword arguments by Raymond Hettinger · 20 years ago
  30. 4a9faa1 Patch #1003640: replace checkline() function parsing with new breakpoint logic: by Johannes Gijsbers · 20 years ago
  31. c69ebe8 Enable the profiling of C functions (builtins and extensions) by Nicholas Bastin · 20 years ago
  32. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  33. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  34. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  35. 72a2b4d Whitespace normalization by Neal Norwitz · 22 years ago
  36. 313a751 This is a Python 2.1 and 2.2 bugfix candidate: by Christian Tismer · 22 years ago
  37. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  38. 93cf79f Use docstrings for exception classes by Neal Norwitz · 22 years ago
  39. 27a3530 Stop using string exceptions by Neal Norwitz · 22 years ago
  40. bdba320 canonic(): Fix by Edward K Ream to make breakpoints work better on by Guido van Rossum · 22 years ago
  41. 83bd70a SF #515005, change "1 + ''" (which pychecker warns about being invalid) by Neal Norwitz · 22 years ago
  42. 42f5332 canonic(): don't use abspath() for filenames looking like <...>; this by Guido van Rossum · 22 years ago
  43. ae1f65f Return self.trace_dispatch from dispatch_return() to enable stepping through generators. (An alternative would be to create a new "yield" debugger event, but that involves many more changes, and might break Bdb subclasses.) by Just van Rossum · 23 years ago
  44. 9cec8fb Make it clear that a bdb subclass must implement do_clear(). by Guido van Rossum · 23 years ago
  45. b49f4a4 String method conversion. by Eric S. Raymond · 23 years ago
  46. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  47. 11cf605 Whitespace normalization. by Tim Peters · 23 years ago
  48. 4acc25b Mass patch by Ka-Ping Yee: by Guido van Rossum · 24 years ago
  49. 331f19e Change two occurrences of type(x) <> types.CodeType into by Guido van Rossum · 24 years ago
  50. 148ffbc canonic(): This used to be equivalent to str() but that caused too by Barry Warsaw · 25 years ago
  51. ca44236 Embarrassing: remove a debug print statement from set_break() for the by Guido van Rossum · 25 years ago
  52. 170e190 Support a canonical() method, implementable by a derived class, to be by Guido van Rossum · 25 years ago
  53. 0189c01 Correct typo in new function get_breaks(). by Guido van Rossum · 25 years ago
  54. 6ea27cc Change clear_break() to the old signature clear_break(file, line). by Guido van Rossum · 25 years ago
  55. 691d27a Bomb on deleting a temporary breakpoint: there's no method by Guido van Rossum · 26 years ago
  56. 75bb54c Don't set a local variable named __args__; this feature no longer by Guido van Rossum · 26 years ago
  57. d93643f Richard Wolff's changes: by Guido van Rossum · 26 years ago
  58. f15d159 Use sys.exc_info() where needed. by Guido van Rossum · 27 years ago
  59. 6683617 Normalize whitespace. by Guido van Rossum · 27 years ago
  60. ff02e1d Support for conditional breakpoints (Jim Fulton). by Guido van Rossum · 27 years ago
  61. 4808dcb Allow code objects to be passed to run() and eval(). by Guido van Rossum · 28 years ago
  62. 5e38b6f handle class exceptions; added runeval; made runctx obsolete by Guido van Rossum · 29 years ago
  63. b6aa92e fix formatting of stack entries by Guido van Rossum · 29 years ago
  64. a558e37 improved prompt format by Guido van Rossum · 30 years ago
  65. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  66. 7bc817d * Mass change: get rid of all init() methods, in favor of __init__() by Guido van Rossum · 30 years ago
  67. 5ef74b8 pdb.py, bdb.py, cmd.py: use __init__() instead of init() by Guido van Rossum · 31 years ago
  68. 89a7869 * Got entirely rid of path.py. by Guido van Rossum · 31 years ago
  69. 4e16098 Added a _v21 def to FL.py and added two new input field types by Guido van Rossum · 32 years ago
  70. ceb3ba2 Different syntax: cannot mix except and finally any more by Guido van Rossum · 32 years ago
  71. edbfcbd use settrace() intreface by Guido van Rossum · 32 years ago
  72. fac6da2 Added a method "format_stack_entry" to be used by derived classes. by Guido van Rossum · 32 years ago
  73. 177dd80 Experimental version writes the command to a file. by Guido van Rossum · 32 years ago
  74. babe2bf Initial revision by Guido van Rossum · 32 years ago