| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | From Martin: New UUIDs for the 3.2 release series.v3.2a1 | Georg Brandl | 2010-07-31 | 1 | -0/+8 |
| | | |||||
| * | Import test_pdb with its full name, so that running python -m test.test_pdb ↵ | Georg Brandl | 2010-07-31 | 1 | -8/+8 |
| | | | | | succeeds. | ||||
| * | #9430: document timedelta str() and repr(). | Georg Brandl | 2010-07-31 | 1 | -0/+18 |
| | | |||||
| * | Rewrap. | Georg Brandl | 2010-07-31 | 1 | -55/+51 |
| | | |||||
| * | Truly uncomment rm lines. | Martin v. Löwis | 2010-07-31 | 1 | -2/+2 |
| | | |||||
| * | Issue #8966: Fix ctypes tests for Windows | Victor Stinner | 2010-07-31 | 3 | -3/+2 |
| | | | | | I removed the implicit conversion from str to bytes. | ||||
| * | Delete openssl checkouts. | Martin v. Löwis | 2010-07-31 | 1 | -1/+2 |
| | | |||||
| * | Copy asm files into place. | Martin v. Löwis | 2010-07-31 | 1 | -0/+9 |
| | | |||||
| * | Revert r83327. This will have to wait until after the alpha1 release. | Georg Brandl | 2010-07-31 | 4 | -193/+2 |
| | | |||||
| * | Document how to change OrderedDict update order from first to last. | Raymond Hettinger | 2010-07-31 | 1 | -0/+12 |
| | | |||||
| * | Add functools.lfu_cache() and functools.lru_cache(). | Raymond Hettinger | 2010-07-31 | 4 | -2/+193 |
| | | |||||
| * | Avoid triggering DeprecationWarnings in test_smtpd and smtpd. | Georg Brandl | 2010-07-31 | 2 | -30/+31 |
| | | |||||
| * | Copy Sun-specific inclusion of <alloca.h> from 2.7 maint to trunk; it seems ↵ | Georg Brandl | 2010-07-31 | 1 | -0/+4 |
| | | | | | to not have been merged to py3k. | ||||
| * | Update OpenSSL version. | Martin v. Löwis | 2010-07-31 | 1 | -2/+2 |
| | | |||||
| * | After distutils doc reversal, change back **bold todo** items to XXX comments. | Georg Brandl | 2010-07-31 | 5 | -15/+13 |
| | | |||||
| * | reverted distutils doc to its 3.1 state | Tarek Ziadé | 2010-07-31 | 8 | -203/+244 |
| | | |||||
| * | 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 |
| | | |||||
| * | Update copyright years and add releases to release list. Also update Sphinx ↵ | Georg Brandl | 2010-07-31 | 6 | -5/+10 |
| | | | | | version number. | ||||
| * | 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 | 6 | -772/+729 |
| | | |||||
| * | Update pydoc topics and adapt Topics builder to Sphinx 1.0. | Georg Brandl | 2010-07-31 | 2 | -36/+35 |
| | | |||||
| * | 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 | 2 | -1/+23 |
| | | | | | restore the old commands instead of producing a traceback. | ||||
| * | - Issue #7567: PyCurses_setupterm: Don't call `setupterm' twice. | Matthias Klose | 2010-07-30 | 2 | -1/+3 |
| | | |||||
| * | Import files from zlib 1.2.5. | Martin v. Löwis | 2010-07-30 | 30 | -1519/+3139 |
| | | |||||
| * | 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 | 4 | -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 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 |
| | | |||||
| * | Use OpenSSL 1.0.0a on Windows. | Martin v. Löwis | 2010-07-30 | 3 | -2/+4 |
| | | |||||
| * | Drop 2.4 support. Add disabled algorithms to Configure options. | Martin v. Löwis | 2010-07-30 | 1 | -8/+5 |
| | | |||||
| * | Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni. | Georg Brandl | 2010-07-30 | 5 | -17/+179 |
| | | |||||
| * | 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 | 2 | -11/+24 |
| | | | | | 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 |
| | | |||||
| * | Add myself for pdb. | Georg Brandl | 2010-07-30 | 1 | -1/+1 |
| | | |||||
| * | Add note about surprising behaviour from round function. | Mark Dickinson | 2010-07-30 | 1 | -0/+7 |
| | | |||||
| * | #809887: improve pdb feedback for breakpoint-related actions. Also add a ↵ | Georg Brandl | 2010-07-30 | 5 | -82/+159 |
| | | | | | functional test for these commands. | ||||
| * | #3143: enable "collapsible sidebar" feature of new Sphinx version. | Georg Brandl | 2010-07-30 | 1 | -0/+3 |
| | | |||||
| * | #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 |
| | | |||||
