Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #5146: handle UID THREAD command correctly. | Georg Brandl | 2010-07-31 | 1 | -1/+1 |
| | |||||
* | #5147: revert accidental indentation of header constant for MozillaCookieJar. | Georg Brandl | 2010-07-31 | 1 | -3/+3 |
| | |||||
* | #8292: Fix three instances of truth tests on return values of filter() ↵ | Georg Brandl | 2010-07-31 | 3 | -5/+5 |
| | | | | (which is always true in Python 3). | ||||
* | #8198: the Helper class should not save the stdin and stdout objects | Georg Brandl | 2010-07-31 | 1 | -4/+12 |
| | | | | | at import time, rather by default use the current streams like the other APIs that output help. | ||||
* | #7909: the prefixes \\.\ and \\?\ indicate special Windows paths, do not try ↵ | Georg Brandl | 2010-07-31 | 2 | -0/+16 |
| | | | | to manipulate them. See http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx for details. | ||||
* | There always is a False and True now. | Georg Brandl | 2010-07-31 | 1 | -4/+2 |
| | |||||
* | #8910: add a file explaining why Lib/test/data is there. | Georg Brandl | 2010-07-31 | 1 | -0/+2 |
| | |||||
* | #3788: more tests for http.cookies, now at 95% coverage. Also bring coding ↵ | Georg Brandl | 2010-07-31 | 2 | -127/+201 |
| | | | | style in the module up to PEP 8, where it does not break backwards compatibility. | ||||
* | Clarify comment in comments test case explaining comment semantics. | Georg Brandl | 2010-07-31 | 1 | -1/+1 |
| | |||||
* | #1286: allow using fileinput.FileInput as context manager. | Georg Brandl | 2010-07-31 | 2 | -0/+30 |
| | |||||
* | Fix bad merge: test_support -> support. | Georg Brandl | 2010-07-31 | 1 | -1/+1 |
| | |||||
* | #9440: Remove borderline test case that fails based on unpredictable ↵ | Georg Brandl | 2010-07-31 | 1 | -4/+0 |
| | | | | conditions such as compiler flags. | ||||
* | Re-commit r83327 now that the release is done. | Georg Brandl | 2010-07-31 | 2 | -2/+140 |
| | |||||
* | Import test_pdb with its full name, so that running python -m test.test_pdb ↵ | Georg Brandl | 2010-07-31 | 1 | -8/+8 |
| | | | | succeeds. | ||||
* | Issue #8966: Fix ctypes tests for Windows | Victor Stinner | 2010-07-31 | 3 | -3/+2 |
| | | | | I removed the implicit conversion from str to bytes. | ||||
* | Revert r83327. This will have to wait until after the alpha1 release. | Georg Brandl | 2010-07-31 | 2 | -140/+2 |
| | |||||
* | Add functools.lfu_cache() and functools.lru_cache(). | Raymond Hettinger | 2010-07-31 | 2 | -2/+140 |
| | |||||
* | Avoid triggering DeprecationWarnings in test_smtpd and smtpd. | Georg Brandl | 2010-07-31 | 2 | -30/+31 |
| | |||||
* | At least give IDLE 3.1 a release date. No further entries there for 3.2 though. | Georg Brandl | 2010-07-31 | 1 | -2/+2 |
| | |||||
* | Fix an oversight in r83294. unquote() should reject bytes. Issue #9301. | Florent Xicluna | 2010-07-31 | 2 | -1/+2 |
| | |||||
* | Bump versions and review NEWS file. | Georg Brandl | 2010-07-31 | 2 | -2/+2 |
| | |||||
* | Update pydoc topics and adapt Topics builder to Sphinx 1.0. | Georg Brandl | 2010-07-31 | 1 | -34/+33 |
| | |||||
* | Make urllib tests pass for now. Will figure out what the correct semantics ↵ | Georg Brandl | 2010-07-31 | 1 | -4/+4 |
| | | | | should be after release. | ||||
* | Fix pdb test failures on the buildbots. | Georg Brandl | 2010-07-31 | 1 | -3/+3 |
| | |||||
* | Only expose the abstract base classes. | Raymond Hettinger | 2010-07-31 | 1 | -5/+0 |
| | | | | | | The concrete types are for internal use (registration). We are not trying to resurrect the types module in collections. | ||||
* | Part of #7245: when KeyboardInterrupt is raised while defining commands, ↵ | Georg Brandl | 2010-07-30 | 1 | -1/+20 |
| | | | | restore the old commands instead of producing a traceback. | ||||
* | Fix issue9301 - handle unquote({}) kind of case. | Senthil Kumaran | 2010-07-30 | 2 | -7/+5 |
| | |||||
* | Show the traceback line numbers as well as the current line numbers if an ↵ | Georg Brandl | 2010-07-30 | 2 | -20/+110 |
| | | | | 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 Brandl | 2010-07-30 | 1 | -0/+3 |
| | |||||
* | Fix source finding if the given frame is a module-level frame. | Georg Brandl | 2010-07-30 | 1 | -2/+11 |
| | |||||
* | Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni. | Georg Brandl | 2010-07-30 | 2 | -17/+157 |
| | |||||
* | Several enhancements to pdb and its test suite. | Georg Brandl | 2010-07-30 | 3 | -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 Brandl | 2010-07-30 | 1 | -1/+0 |
| | |||||
* | Add Breakpoint.bpformat(), which returns the info usually printed by ↵ | Georg Brandl | 2010-07-30 | 1 | -9/+14 |
| | | | | bpprint(). Necessary for major refactoring of pdb output handling. | ||||
* | #7964 followup: add test case to ensure issue remains fixed. | Georg Brandl | 2010-07-30 | 1 | -0/+24 |
| | |||||
* | #809887: improve pdb feedback for breakpoint-related actions. Also add a ↵ | Georg Brandl | 2010-07-30 | 3 | -82/+147 |
| | | | | functional test for these commands. | ||||
* | #5294: Fix the behavior of pdb "continue" command when called in the ↵ | Georg Brandl | 2010-07-30 | 2 | -3/+49 |
| | | | | top-level debugged frame. | ||||
* | #5727: Restore the ability to use readline when calling into pdb in doctests. | Georg Brandl | 2010-07-30 | 1 | -0/+2 |
| | |||||
* | 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 | 1 | -0/+4 |
| | | | | 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 | 2 | -0/+34 |
| | | | | been reassigned. | ||||
* | #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug ↵ | Georg Brandl | 2010-07-30 | 2 | -8/+48 |
| | | | | 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 | 1 | -5/+9 |
| | | | | 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 | 1 | -0/+10 |
| | |||||
* | Allow giving an explicit line number to "until". | Georg Brandl | 2010-07-30 | 2 | -10/+28 |
| | |||||
* | #1437051: allow "continue"/"next"/etc. in .pdbrc, also add pdb -c option to ↵ | Georg Brandl | 2010-07-30 | 1 | -18/+55 |
| | | | | 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 | 1 | -2/+3 |
| | | | | debugged line. | ||||
* | #4108: the first default entry (User-agent: *) wins. | Georg Brandl | 2010-07-29 | 2 | -2/+18 |
| | |||||
* | #8603: Add environb to os.__all__ | Victor Stinner | 2010-07-29 | 1 | -1/+2 |
| |