1. 55353ca pydoc.pager does not promise to use $PAGER. by Georg Brandl · 14 years ago
  2. 02053ee #9279: remove the pdb.doc file, put its contents in pdb.__doc__. Also sync this and the pdb docs, introduce a new directive for pdb commands and a role to link to them. by Georg Brandl · 14 years ago
  3. eb1f4aa #9064: accept number of frames for "up" and "down" commands in pdb. by Georg Brandl · 14 years ago
  4. 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 14 years ago
  5. 9fa2e02 Merged revisions 74838-74839 via svnmerge from by Georg Brandl · 15 years ago
  6. be74a37 #6888 fix the alias command with no arguments by Benjamin Peterson · 15 years ago
  7. d07ac64 #6126: fix pdb stepping and breakpoints by giving the executed code the correct filename; this used execfile() in 2.x which did this automatically. by Georg Brandl · 15 years ago
  8. a635054 #6323: pdb doesn't deal well with SyntaxErrors. by Amaury Forgeot d'Arc · 15 years ago
  9. 3078df0 Merged revisions 72324 via svnmerge from by Georg Brandl · 15 years ago
  10. 243ad66 Merged revisions 72322 via svnmerge from by Georg Brandl · 15 years ago
  11. d23f822 Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-70789,70824,70828,70832,70836,70842,70851,70855,70857,70866-70872,70883,70885,70893-70894,70896-70897,70903,70905-70907,70915,70927,70933,70951,70960,70962-70964,70998,71001,71006,71008,71010-71011,71019,71037,71056,71094,71101-71103,71106,71119,71123,71149-71150,71203,71212,71214-71217,71221,71240 via svnmerge from by Benjamin Peterson · 15 years ago
  12. f088e5e Merged revisions 67750-67751 via svnmerge from by Nick Coghlan · 16 years ago
  13. 1a6e0d0 Merged revisions 66974,66977,66984,66989,66992,66994-66996,66998-67000,67007,67015 via svnmerge from by Benjamin Peterson · 16 years ago
  14. 1f2ba4b Rename the repr module to reprlib. by Alexandre Vassalotti · 16 years ago
  15. 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
  16. 752abd0 Convert a lot of print statements to print functions in docstrings, by Neal Norwitz · 16 years ago
  17. f6cd967 Merged revisions 61913,61915-61916,61918-61919,61922-61926,61928-61929,61931,61935,61938,61943 via svnmerge from by Christian Heimes · 16 years ago
  18. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  19. 679db4a Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from by Christian Heimes · 17 years ago
  20. 7736b5b Merged revisions 59952-59984 via svnmerge from by Guido van Rossum · 17 years ago
  21. d348b25 Remove several mentions of old Python versions that don't apply anymore. by Georg Brandl · 17 years ago
  22. ff73795 Removed the API to create unbound methods and simplified the API for bound methods. The signature is PyMethod_New(func, instance). by Christian Heimes · 17 years ago
  23. 7dd803a Repair a bad translation of the exec statement. by Georg Brandl · 17 years ago
  24. c987924 Add "print" command to pdb, "print s" previously invoked the print statement. by Georg Brandl · 17 years ago
  25. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  26. c5b6ab0 Use input(), not our own fake raw input (in one place). by Guido van Rossum · 17 years ago
  27. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  28. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  29. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  30. ceae375 Fix a bogus end=' ' here. by Guido van Rossum · 18 years ago
  31. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  32. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
  33. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  34. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  35. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  36. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  37. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  38. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  39. ce96f69 Get rid of a bunch more raw_input references by Neal Norwitz · 18 years ago
  40. 6d2b346 bug [ 1192315 ] 'clear -1' in pdb by Georg Brandl · 19 years ago
  41. 84a6c20 Bug #1055168: calling pdb.set_trace() calls Bdb.set_trace, which made by Johannes Gijsbers · 20 years ago
  42. 2ef7e6c SF bug #1052503: pdb runcall should accept keyword arguments by Raymond Hettinger · 20 years ago
  43. e718f61 Whitespace normalization. by Tim Peters · 20 years ago
  44. 25b38c8 Improvements when running pdb as a script. by Johannes Gijsbers · 20 years ago
  45. 4a9faa1 Patch #1003640: replace checkline() function parsing with new breakpoint logic: by Johannes Gijsbers · 20 years ago
  46. 34c4120 bug #989672: pdb.doc and the help messages for the help_d and help_u methods by Johannes Gijsbers · 20 years ago
  47. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  48. f545baa Whitespace normalization. by Tim Peters · 21 years ago
  49. b1f8bab [Bug #741171] pdb crashes when enabling a non-existing breakpoint by Andrew M. Kuchling · 21 years ago
  50. ed538d8 Detabified. Removed dead code. by Guido van Rossum · 21 years ago
  51. a12fe4e - New function sys.call_tracing() allows pdb to debug code by Guido van Rossum · 21 years ago
  52. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  53. 01eb85c I believe this fixes by Michael W. Hudson · 22 years ago
  54. eef2607 Duh. The do_EOF() implementation was bogus. Make it more like by Guido van Rossum · 22 years ago
  55. cfd3884 This is Richie Hindle's patch by Michael W. Hudson · 22 years ago
  56. 210bd20 Implement a `pp' command, which is like `p' except that it by Barry Warsaw · 22 years ago
  57. ef1b41b At Jim Fulton's request, increase the maxstring value of _saferepr to by Guido van Rossum · 22 years ago
  58. 280488b Whitespace normalization. by Tim Peters · 22 years ago
  59. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  60. 0845459 Fix SF bug 579701 (Fernando Pérez); an input line consisting of one or by Guido van Rossum · 22 years ago
  61. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  62. d1c08f3 Add exit as alias for quit, as the easiest way to address SF bug #543674. by Guido van Rossum · 22 years ago
  63. 6f8ee59 SF bug #131560: pdb imports 'repr', causing name collision by Tim Peters · 24 years ago
  64. 9b93c5f String method conversion. by Eric S. Raymond · 24 years ago
  65. 352674d a few more __all__ lists by Skip Montanaro · 24 years ago
  66. 6bd6835 I've been using gdb a lot lately -- I'm missing 'bt' as a command in by Guido van Rossum · 24 years ago
  67. 2344fae Whitespace normalization. by Tim Peters · 24 years ago
  68. 752d3f5 - Don't hardcode Unix filename syntax when opening ~/.pdbrc. by Guido van Rossum · 24 years ago
  69. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  70. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  71. e85c93f Sjoerd Mullender: by Guido van Rossum · 24 years ago
  72. 4b8c6ea Actually, the previous batch's comment should have been different; by Guido van Rossum · 25 years ago
  73. 54f22ed More trivial comment -> docstring transformations by Ka-Ping Yee, who writes: by Guido van Rossum · 25 years ago
  74. 19878f5 Sjoerd Mullender writes: by Guido van Rossum · 25 years ago
  75. 2bee8fe Pdb.lineinfo(): Don't use os.popen('egrep ...') to find the line in by Barry Warsaw · 25 years ago
  76. 699f3bb Get rid of confusing 'global' statement in global code. by Guido van Rossum · 25 years ago
  77. b657c93 Improvement of b/w compat note in help text for clear, by Richard Wolff. by Guido van Rossum · 26 years ago
  78. 583cc31 Get rid of do_clear_break / do_clb command -- it is redundant. by Guido van Rossum · 26 years ago
  79. 816a9fb Change clear syntax to support three alternatives: by Guido van Rossum · 26 years ago
  80. c2047c1 When run as a script, don't pass a fake __main__ dictionary; use the real one. by Guido van Rossum · 26 years ago
  81. 3a98e78 Richard Wolff's additional changes; some layout nits, and change the by Guido van Rossum · 26 years ago
  82. 2424f85 Richard Wolff's changes: by Guido van Rossum · 26 years ago
  83. 1f00eed Feature added by Harri Pasanen (at my suggestion): .py suffix on by Guido van Rossum · 26 years ago
  84. b5699c7 Added support for specifying a filename for a breakpoint, roughly by Guido van Rossum · 26 years ago
  85. 46c86bb A working version of the 'args' command (it prints the current values by Guido van Rossum · 26 years ago
  86. f15d159 Use sys.exc_info() where needed. by Guido van Rossum · 27 years ago
  87. c444865 No longer need to use codehack -- use co.co_firstlineno instead. by Guido van Rossum · 27 years ago
  88. 9e1ee97 Support for conditional breakpoints (Jim Fulton, with some changes). by Guido van Rossum · 27 years ago
  89. f06ee5f /usr/local/bin/python -> /usr/bin/env python by Guido van Rossum · 28 years ago
  90. ec577d5 Correct sys.path[0] when used stand-alone by Guido van Rossum · 28 years ago
  91. f17361d Two changes suggested by Andrew Kuchling: by Guido van Rossum · 28 years ago
  92. ec8fd94 use new "single" compile option by Guido van Rossum · 29 years ago
  93. 5e38b6f handle class exceptions; added runeval; made runctx obsolete by Guido van Rossum · 29 years ago
  94. b6aa92e fix formatting of stack entries by Guido van Rossum · 30 years ago
  95. a558e37 improved prompt format by Guido van Rossum · 30 years ago
  96. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  97. 7bc817d * Mass change: get rid of all init() methods, in favor of __init__() by Guido van Rossum · 31 years ago
  98. b37954f Added missing "import os" to pdb.help() by Guido van Rossum · 31 years ago
  99. e61fa0a * profile.py, pdb.py: added help() function by Guido van Rossum · 31 years ago
  100. 8e2ec56 * pdb.py: set 'privileged' property when evaluating expressions by Guido van Rossum · 31 years ago