summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* 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-301-9/+14
| | | | 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
|
* #809887: improve pdb feedback for breakpoint-related actions. Also add a ↵Georg Brandl2010-07-303-82/+147
| | | | functional test for these commands.
* #5294: Fix the behavior of pdb "continue" command when called in the ↵Georg Brandl2010-07-302-3/+49
| | | | top-level debugged frame.
* #5727: Restore the ability to use readline when calling into pdb in doctests.Georg Brandl2010-07-301-0/+2
|
* 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-301-0/+4
| | | | source file to be debugged is in a non-builtin encoding.
* Issue #8048: Prevent doctests from failing when sys.displayhook hasGeorg Brandl2010-07-302-0/+34
| | | | been reassigned.
* #1472251: remove addition of "\n" to code given to pdb.run[eval](), the bug ↵Georg Brandl2010-07-302-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 Brandl2010-07-301-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 Brandl2010-07-301-0/+10
|
* Allow giving an explicit line number to "until".Georg Brandl2010-07-302-10/+28
|
* #1437051: allow "continue"/"next"/etc. in .pdbrc, also add pdb -c option to ↵Georg Brandl2010-07-301-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 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-301-2/+3
| | | | debugged line.
* #4108: the first default entry (User-agent: *) wins.Georg Brandl2010-07-292-2/+18
|
* #8603: Add environb to os.__all__Victor Stinner2010-07-291-1/+2
|
* #6630: allow customizing flags for compiling string.Template.idpattern.Georg Brandl2010-07-291-1/+2
|
* #9397: remove mention of dbm.bsd which does not exist anymore.Victor Stinner2010-07-291-15/+6
|
* #1090076: explain the behavior of *vars* in get() better.Georg Brandl2010-07-291-5/+6
|
* 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-293-4/+117
| | | | test config file to test special cases.
* Fix for r83202: improve the handling of empty lines.Georg Brandl2010-07-291-7/+8
|
* 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
|
* #9283: Fix repr(os.environ), display unicode keys and values on POSIX systemsVictor Stinner2010-07-281-1/+3
|
* Add missing file.Georg Brandl2010-07-281-0/+537
|
* Syntax cleanup.Florent Xicluna2010-07-287-11/+9
|
* Fix Issue6325 - robotparse to honor urls with query strings.Senthil Kumaran2010-07-282-2/+15
|
* #1682942: add some ConfigParser features: alternate delimiters, alternate ↵Georg Brandl2010-07-282-202/+396
| | | | 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 Brandl2010-07-282-0/+21
|
* Fix failure introduced in r83182.Ezio Melotti2010-07-281-1/+1
|
* Issue #8966: ctypes: Remove implicit bytes-unicode conversionVictor Stinner2010-07-285-137/+42
|
* Fix ctypes tests to avoid implicit bytes-unicode conversionVictor Stinner2010-07-2720-61/+57
|
* Issue #9378: python -m pickle <pickle file> will now load and displayAlexander Belopolsky2010-07-271-1/+23
| | | | the first object in the pickle file.
* With skipUnless there is no need to add test classes conditionally.Ezio Melotti2010-07-271-6/+3
|
* Use proper skips and assert* methods in test_asyncore.Ezio Melotti2010-07-271-96/+97
|
* Issue #4770: Restrict binascii module to accept only bytes (as specified).Florent Xicluna2010-07-274-17/+20
| | | | And fix the email package to encode to ASCII instead of ``raw-unicode-escape`` before ASCII-to-binary decoding.
* Issue #9384: python -m tkinter will now display a simple demo applet.Alexander Belopolsky2010-07-271-0/+7
|
* The default size of the re module's compiled regular expression cache hasGregory P. Smith2010-07-272-3/+99
| | | | | | | | been increased from 100 to 500 and the cache replacement policy has changed from simply clearing the entire cache on overflow to randomly forgetting 20% of the existing cached compiled regular expressions. This is a performance win for applications that use a lot of regular expressions and limits the impact of the performance hit anytime the cache is exceeded.
* Make python version of fromtimestamp behave more like C.Alexander Belopolsky2010-07-262-10/+20
|
* Fix #7113. Patch by Łukasz Langa.Brian Curtin2010-07-262-21/+60
| | | | | Changes include using a list of lines instead of patching together using string interpolation, and a multi-line value test cases.
* #777884: make .normalize() do nothing for childless nodes, instead of ↵Andrew M. Kuchling2010-07-252-0/+12
| | | | raising an exception
* Issue #4686 - add .args to exceptions in the configparsermoduleMichael Foord2010-07-252-16/+43
|
* Corrected comments on where settrace and setprofile are tested.Alexander Belopolsky2010-07-251-2/+2
|
* Issue #9315: Renamed test_trace to test_sys_settrace andAlexander Belopolsky2010-07-252-0/+0
| | | | | test_profilehooks to test_sys_setprofile so that test_trace can be used for testing the trace module and for naming consistency.
* Issue #9315: Revert r83005 before renaming test_trace toAlexander Belopolsky2010-07-251-0/+0
| | | | | test_sys_settrace and test_profilehooks to test_sys_setprofile in all three branches.
* Fix for issue 9367: the test code for os.getgroupsRonald Oussoren2010-07-241-1/+5
| | | | | | assumes that the result of getgroups and the output of the id(1) command return groups in the same order. That assumption is both fragile and false.
* Implementation for issue 4184Richard Jones2010-07-241-42/+168
| | | | Changes the previously private attributes to make them public, increasing the potential for extending the library in user code. Backward-compatible and documented.