Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | #5294: Fix the behavior of pdb "continue" command when called in the ↵ | Georg Brandl | 2010-07-30 | 3 | -3/+52 | |
| | | | | top-level debugged frame. | |||||
* | #5727: Restore the ability to use readline when calling into pdb in doctests. | Georg Brandl | 2010-07-30 | 2 | -0/+5 | |
| | ||||||
* | Remove redundant import. | Georg Brandl | 2010-07-30 | 1 | -1/+0 | |
| | ||||||
* | #6719: In pdb, do not stop somewhere in the encodings machinery if the ↵ | Georg Brandl | 2010-07-30 | 2 | -0/+7 | |
| | | | | source file to be debugged is in a non-builtin encoding. | |||||
* | Issue #8048: Prevent doctests from failing when sys.displayhook has | Georg Brandl | 2010-07-30 | 3 | -0/+37 | |
| | | | | been reassigned. | |||||
* | #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug ↵ | Georg Brandl | 2010-07-30 | 3 | -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 Brandl | 2010-07-30 | 2 | -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 Brandl | 2010-07-30 | 2 | -0/+13 | |
| | ||||||
* | Allow giving an explicit line number to "until". | Georg Brandl | 2010-07-30 | 4 | -13/+37 | |
| | ||||||
* | #1437051: allow "continue"/"next"/etc. in .pdbrc, also add pdb -c option to ↵ | Georg Brandl | 2010-07-30 | 3 | -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 Brandl | 2010-07-30 | 1 | -2/+5 | |
| | | | | setting breakpoints before starting debugging. | |||||
* | #4179: In pdb, allow "list ." as a command to return to the currently ↵ | Georg Brandl | 2010-07-30 | 2 | -2/+6 | |
| | | | | debugged line. | |||||
* | Clarification. | Georg Brandl | 2010-07-30 | 1 | -3/+3 | |
| | ||||||
* | Issue #9422: Fix memory leak when re-initializing a struct.Struct object. | Mark Dickinson | 2010-07-29 | 2 | -0/+5 | |
| | ||||||
* | #4108: the first default entry (User-agent: *) wins. | Georg Brandl | 2010-07-29 | 3 | -2/+21 | |
| | ||||||
* | #8603: Add environb to os.__all__ | Victor Stinner | 2010-07-29 | 1 | -1/+2 | |
| | ||||||
* | #6630: allow customizing flags for compiling string.Template.idpattern. | Georg Brandl | 2010-07-29 | 3 | -1/+13 | |
| | ||||||
* | #9397: remove mention of dbm.bsd which does not exist anymore. | Victor Stinner | 2010-07-29 | 1 | -15/+6 | |
| | ||||||
* | #6522: add a "decorator" directive to explicitly document decorators, and ↵ | Georg Brandl | 2010-07-29 | 7 | -16/+75 | |
| | | | | use it in a few places. | |||||
* | #9388: remove ERA_YEAR which is never defined in the source code. | Georg Brandl | 2010-07-29 | 1 | -4/+0 | |
| | ||||||
* | #9397: remove mention of dbm.bsd which does not exist anymore. | Georg Brandl | 2010-07-29 | 1 | -13/+10 | |
| | ||||||
* | Use correct directive and name. | Georg Brandl | 2010-07-29 | 1 | -1/+1 | |
| | ||||||
* | #9407: document configparser.Error. | Georg Brandl | 2010-07-29 | 1 | -0/+5 | |
| | ||||||
* | Use Py_CLEAR(). | Georg Brandl | 2010-07-29 | 1 | -4/+2 | |
| | ||||||
* | #1090076: explain the behavior of *vars* in get() better. | Georg Brandl | 2010-07-29 | 2 | -12/+15 | |
| | ||||||
* | Fix typo. | Mark Dickinson | 2010-07-29 | 1 | -1/+1 | |
| | ||||||
* | #3874: document HTMLParser.unknown_decl(). | Georg Brandl | 2010-07-29 | 1 | -4/+12 | |
| | ||||||
* | Fix #9412: make list of messages an instance attribute instead of class ↵ | Georg Brandl | 2010-07-29 | 1 | -1/+3 | |
| | | | | attribute. | |||||
* | #9411: allow selecting an encoding for configparser files. Also adds a new ↵ | Georg Brandl | 2010-07-29 | 5 | -16/+136 | |
| | | | | test config file to test special cases. | |||||
* | Fix for r83202: improve the handling of empty lines. | Georg Brandl | 2010-07-29 | 1 | -7/+8 | |
| | ||||||
* | #6538: fix regex documentation again -- use fictional class names "regex" ↵ | Georg Brandl | 2010-07-29 | 1 | -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 Brandl | 2010-07-29 | 1 | -7/+4 | |
| | ||||||
* | Update test_os.py according to my last changes on _Environ.__repr__() | Victor Stinner | 2010-07-29 | 1 | -1/+3 | |
| | ||||||
* | Issue #9283: Oops, add missing { and } to repr(os.environ) | Victor Stinner | 2010-07-28 | 1 | -1/+1 | |
| | ||||||
* | #9283: Fix repr(os.environ), display unicode keys and values on POSIX systems | Victor Stinner | 2010-07-28 | 1 | -1/+3 | |
| | ||||||
* | Add missing file. | Georg Brandl | 2010-07-28 | 1 | -0/+537 | |
| | ||||||
* | Syntax cleanup. | Florent Xicluna | 2010-07-28 | 7 | -11/+9 | |
| | ||||||
* | Fix Issue6325 - robotparse to honor urls with query strings. | Senthil Kumaran | 2010-07-28 | 2 | -2/+15 | |
| | ||||||
* | #1682942: add some ConfigParser features: alternate delimiters, alternate ↵ | Georg Brandl | 2010-07-28 | 4 | -282/+547 | |
| | | | | comments, empty lines in values. Also enhance the docs with more examples and mention SafeConfigParser before ConfigParser. Patch by Lukas Langa, review by myself, Eric and Ezio. | |||||
* | #9354: Provide getsockopt() in asyncore file_wrapper(). Patch by Lukas Langa. | Georg Brandl | 2010-07-28 | 4 | -1/+24 | |
| | ||||||
* | Issue #8991: convertbuffer() rejects discontigious buffers | Victor Stinner | 2010-07-28 | 2 | -21/+10 | |
| | ||||||
* | Fix failure introduced in r83182. | Ezio Melotti | 2010-07-28 | 1 | -1/+1 | |
| | ||||||
* | Issue #8966: ctypes: Remove implicit bytes-unicode conversion | Victor Stinner | 2010-07-28 | 9 | -245/+51 | |
| | ||||||
* | Fix ctypes tests to avoid implicit bytes-unicode conversion | Victor Stinner | 2010-07-27 | 20 | -61/+57 | |
| | ||||||
* | Issue #9378: python -m pickle <pickle file> will now load and display | Alexander Belopolsky | 2010-07-27 | 2 | -1/+26 | |
| | | | | the first object in the pickle file. | |||||
* | With skipUnless there is no need to add test classes conditionally. | Ezio Melotti | 2010-07-27 | 1 | -6/+3 | |
| | ||||||
* | Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg. | Antoine Pitrou | 2010-07-27 | 2 | -13/+3 | |
| | ||||||
* | Use proper skips and assert* methods in test_asyncore. | Ezio Melotti | 2010-07-27 | 1 | -96/+97 | |
| | ||||||
* | Issue #4770: Restrict binascii module to accept only bytes (as specified). | Florent Xicluna | 2010-07-27 | 7 | -22/+42 | |
| | | | | And fix the email package to encode to ASCII instead of ``raw-unicode-escape`` before ASCII-to-binary decoding. | |||||
* | Update Sphinx to 1.0.1. | Georg Brandl | 2010-07-27 | 2 | -2/+2 | |
| |