summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Import files from zlib 1.2.5.Martin v. Löwis2010-07-3030-1519/+3139
|
* Fix issue9301 - handle unquote({}) kind of case.Senthil Kumaran2010-07-302-7/+5
|
* Show the traceback line numbers as well as the current line numbers if an ↵Georg Brandl2010-07-304-21/+124
| | | | exception is being debugged. Courtesy of pdb++ by Antonio Cuni. Also document -> and >> markers for "list".
* Test that "source" with nonexisting things works as expected.Georg Brandl2010-07-301-0/+3
|
* Fix source finding if the given frame is a module-level frame.Georg Brandl2010-07-301-2/+11
|
* Use OpenSSL 1.0.0a on Windows.Martin v. Löwis2010-07-303-2/+4
|
* Drop 2.4 support. Add disabled algorithms to Configure options.Martin v. Löwis2010-07-301-8/+5
|
* Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni.Georg Brandl2010-07-305-17/+179
|
* Several enhancements to pdb and its test suite.Georg Brandl2010-07-303-645/+563
| | | | | | | * added basic test for basic commands * removed duplication of command docs, and moved them to their implementation * unified and useful display of exceptions * output messages and errors using overridable methods (also fixes #1503502)
* pdb now has its own tests.Georg Brandl2010-07-301-1/+0
|
* Add Breakpoint.bpformat(), which returns the info usually printed by ↵Georg Brandl2010-07-302-11/+24
| | | | bpprint(). Necessary for major refactoring of pdb output handling.
* #7964 followup: add test case to ensure issue remains fixed.Georg Brandl2010-07-301-0/+24
|
* Add myself for pdb.Georg Brandl2010-07-301-1/+1
|
* Add note about surprising behaviour from round function.Mark Dickinson2010-07-301-0/+7
|
* #809887: improve pdb feedback for breakpoint-related actions. Also add a ↵Georg Brandl2010-07-305-82/+159
| | | | functional test for these commands.
* #3143: enable "collapsible sidebar" feature of new Sphinx version.Georg Brandl2010-07-301-0/+3
|
* #5294: Fix the behavior of pdb "continue" command when called in the ↵Georg Brandl2010-07-303-3/+52
| | | | top-level debugged frame.
* #5727: Restore the ability to use readline when calling into pdb in doctests.Georg Brandl2010-07-302-0/+5
|
* Remove redundant import.Georg Brandl2010-07-301-1/+0
|
* #6719: In pdb, do not stop somewhere in the encodings machinery if the ↵Georg Brandl2010-07-302-0/+7
| | | | source file to be debugged is in a non-builtin encoding.
* Issue #8048: Prevent doctests from failing when sys.displayhook hasGeorg Brandl2010-07-303-0/+37
| | | | been reassigned.
* #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug ↵Georg Brandl2010-07-303-19/+59
| | | | 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.
* #8015: fix crash when entering an empty line for breakpoint commands. Also ↵Georg Brandl2010-07-302-5/+12
| | | | restore environment properly when an exception occurs during the definition of commands.
* Document the "jump" command in pdb.__doc__, and add a version tag for "until X".Georg Brandl2010-07-302-0/+13
|
* Allow giving an explicit line number to "until".Georg Brandl2010-07-304-13/+37
|
* #1437051: allow "continue"/"next"/etc. in .pdbrc, also add pdb -c option to ↵Georg Brandl2010-07-303-22/+72
| | | | give these commands. This allows to run a script until an exception occurs.
* #9230: allow Pdb.checkline() to be called without a current frame, for ↵Georg Brandl2010-07-301-2/+5
| | | | setting breakpoints before starting debugging.
* #4179: In pdb, allow "list ." as a command to return to the currently ↵Georg Brandl2010-07-302-2/+6
| | | | debugged line.
* Clarification.Georg Brandl2010-07-301-3/+3
|
* Issue #9422: Fix memory leak when re-initializing a struct.Struct object.Mark Dickinson2010-07-292-0/+5
|
* #4108: the first default entry (User-agent: *) wins.Georg Brandl2010-07-293-2/+21
|
* #8603: Add environb to os.__all__Victor Stinner2010-07-291-1/+2
|
* #6630: allow customizing flags for compiling string.Template.idpattern.Georg Brandl2010-07-293-1/+13
|
* #9397: remove mention of dbm.bsd which does not exist anymore.Victor Stinner2010-07-291-15/+6
|
* #6522: add a "decorator" directive to explicitly document decorators, and ↵Georg Brandl2010-07-297-16/+75
| | | | use it in a few places.
* #9388: remove ERA_YEAR which is never defined in the source code.Georg Brandl2010-07-291-4/+0
|
* #9397: remove mention of dbm.bsd which does not exist anymore.Georg Brandl2010-07-291-13/+10
|
* Use correct directive and name.Georg Brandl2010-07-291-1/+1
|
* #9407: document configparser.Error.Georg Brandl2010-07-291-0/+5
|
* Use Py_CLEAR().Georg Brandl2010-07-291-4/+2
|
* #1090076: explain the behavior of *vars* in get() better.Georg Brandl2010-07-292-12/+15
|
* Fix typo.Mark Dickinson2010-07-291-1/+1
|
* #3874: document HTMLParser.unknown_decl().Georg Brandl2010-07-291-4/+12
|
* Fix #9412: make list of messages an instance attribute instead of class ↵Georg Brandl2010-07-291-1/+3
| | | | attribute.
* #9411: allow selecting an encoding for configparser files. Also adds a new ↵Georg Brandl2010-07-295-16/+136
| | | | test config file to test special cases.
* Fix for r83202: improve the handling of empty lines.Georg Brandl2010-07-291-7/+8
|
* #6538: fix regex documentation again -- use fictional class names "regex" ↵Georg Brandl2010-07-291-200/+198
| | | | and "match" but do not document them as classes, remove 1.5 compat info and use new default argument syntax where possible.
* Remove Python 1.5 compatibility note.Georg Brandl2010-07-291-7/+4
|
* Update test_os.py according to my last changes on _Environ.__repr__()Victor Stinner2010-07-291-1/+3
|
* Issue #9283: Oops, add missing { and } to repr(os.environ)Victor Stinner2010-07-281-1/+1
|