1. 01eb85c I believe this fixes by Michael W. Hudson · 21 years ago
  2. eef2607 Duh. The do_EOF() implementation was bogus. Make it more like by Guido van Rossum · 22 years ago
  3. cfd3884 This is Richie Hindle's patch by Michael W. Hudson · 22 years ago
  4. 210bd20 Implement a `pp' command, which is like `p' except that it by Barry Warsaw · 22 years ago
  5. ef1b41b At Jim Fulton's request, increase the maxstring value of _saferepr to by Guido van Rossum · 22 years ago
  6. 280488b Whitespace normalization. by Tim Peters · 22 years ago
  7. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  8. 0845459 Fix SF bug 579701 (Fernando Pérez); an input line consisting of one or by Guido van Rossum · 22 years ago
  9. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  10. d1c08f3 Add exit as alias for quit, as the easiest way to address SF bug #543674. by Guido van Rossum · 22 years ago
  11. 6f8ee59 SF bug #131560: pdb imports 'repr', causing name collision by Tim Peters · 23 years ago
  12. 9b93c5f String method conversion. by Eric S. Raymond · 23 years ago
  13. 352674d a few more __all__ lists by Skip Montanaro · 23 years ago
  14. 6bd6835 I've been using gdb a lot lately -- I'm missing 'bt' as a command in by Guido van Rossum · 23 years ago
  15. 2344fae Whitespace normalization. by Tim Peters · 24 years ago
  16. 752d3f5 - Don't hardcode Unix filename syntax when opening ~/.pdbrc. by Guido van Rossum · 24 years ago
  17. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  18. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  19. e85c93f Sjoerd Mullender: by Guido van Rossum · 24 years ago
  20. 4b8c6ea Actually, the previous batch's comment should have been different; by Guido van Rossum · 24 years ago
  21. 54f22ed More trivial comment -> docstring transformations by Ka-Ping Yee, who writes: by Guido van Rossum · 24 years ago
  22. 19878f5 Sjoerd Mullender writes: by Guido van Rossum · 25 years ago
  23. 2bee8fe Pdb.lineinfo(): Don't use os.popen('egrep ...') to find the line in by Barry Warsaw · 25 years ago
  24. 699f3bb Get rid of confusing 'global' statement in global code. by Guido van Rossum · 25 years ago
  25. b657c93 Improvement of b/w compat note in help text for clear, by Richard Wolff. by Guido van Rossum · 25 years ago
  26. 583cc31 Get rid of do_clear_break / do_clb command -- it is redundant. by Guido van Rossum · 25 years ago
  27. 816a9fb Change clear syntax to support three alternatives: by Guido van Rossum · 25 years ago
  28. c2047c1 When run as a script, don't pass a fake __main__ dictionary; use the real one. by Guido van Rossum · 26 years ago
  29. 3a98e78 Richard Wolff's additional changes; some layout nits, and change the by Guido van Rossum · 26 years ago
  30. 2424f85 Richard Wolff's changes: by Guido van Rossum · 26 years ago
  31. 1f00eed Feature added by Harri Pasanen (at my suggestion): .py suffix on by Guido van Rossum · 26 years ago
  32. b5699c7 Added support for specifying a filename for a breakpoint, roughly by Guido van Rossum · 26 years ago
  33. 46c86bb A working version of the 'args' command (it prints the current values by Guido van Rossum · 26 years ago
  34. f15d159 Use sys.exc_info() where needed. by Guido van Rossum · 27 years ago
  35. c444865 No longer need to use codehack -- use co.co_firstlineno instead. by Guido van Rossum · 27 years ago
  36. 9e1ee97 Support for conditional breakpoints (Jim Fulton, with some changes). by Guido van Rossum · 27 years ago
  37. f06ee5f /usr/local/bin/python -> /usr/bin/env python by Guido van Rossum · 28 years ago
  38. ec577d5 Correct sys.path[0] when used stand-alone by Guido van Rossum · 28 years ago
  39. f17361d Two changes suggested by Andrew Kuchling: by Guido van Rossum · 28 years ago
  40. ec8fd94 use new "single" compile option by Guido van Rossum · 29 years ago
  41. 5e38b6f handle class exceptions; added runeval; made runctx obsolete by Guido van Rossum · 29 years ago
  42. b6aa92e fix formatting of stack entries by Guido van Rossum · 29 years ago
  43. a558e37 improved prompt format by Guido van Rossum · 30 years ago
  44. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  45. 7bc817d * Mass change: get rid of all init() methods, in favor of __init__() by Guido van Rossum · 31 years ago
  46. b37954f Added missing "import os" to pdb.help() by Guido van Rossum · 31 years ago
  47. e61fa0a * profile.py, pdb.py: added help() function by Guido van Rossum · 31 years ago
  48. 8e2ec56 * pdb.py: set 'privileged' property when evaluating expressions by Guido van Rossum · 31 years ago
  49. 5ef74b8 pdb.py, bdb.py, cmd.py: use __init__() instead of init() by Guido van Rossum · 31 years ago
  50. 0023078 Added whatis command (third try -- filesystem was full, rcs lock failed) by Guido van Rossum · 31 years ago
  51. 89a7869 * Got entirely rid of path.py. by Guido van Rossum · 32 years ago
  52. c629d34 * change default line numbers for 'list' in pdb.py by Guido van Rossum · 32 years ago
  53. 3577113 Added post_mortem() and pm() interfaces to pdb and wdb. by Guido van Rossum · 32 years ago
  54. 4e16098 Added a _v21 def to FL.py and added two new input field types by Guido van Rossum · 32 years ago
  55. 23efba4 Rewritten to use bdb.Bdb as base class. by Guido van Rossum · 32 years ago
  56. 7ac1c81 Added 'r(et)v(al) command. by Guido van Rossum · 33 years ago
  57. 6fe08b0 Moved documentation out to pdb.doc file. by Guido van Rossum · 33 years ago
  58. 92df0c6 Added to-do list. by Guido van Rossum · 33 years ago
  59. b914257 Almost complete rewritten. Documentation added. by Guido van Rossum · 33 years ago
  60. d6c3f25 react to interrupts differently by Guido van Rossum · 33 years ago
  61. 921c824 Initial revision by Guido van Rossum · 33 years ago