Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Show the traceback line numbers as well as the current line numbers if an ↵ | Georg Brandl | 2010-07-30 | 1 | -0/+4 |
| | | | | exception is being debugged. Courtesy of pdb++ by Antonio Cuni. Also document -> and >> markers for "list". | ||||
* | Use OpenSSL 1.0.0a on Windows. | Martin v. Löwis | 2010-07-30 | 1 | -0/+2 |
| | |||||
* | Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni. | Georg Brandl | 2010-07-30 | 2 | -0/+10 |
| | |||||
* | Add myself for pdb. | Georg Brandl | 2010-07-30 | 1 | -1/+1 |
| | |||||
* | #809887: improve pdb feedback for breakpoint-related actions. Also add a ↵ | Georg Brandl | 2010-07-30 | 1 | -0/+3 |
| | | | | functional test for these commands. | ||||
* | #5294: Fix the behavior of pdb "continue" command when called in the ↵ | Georg Brandl | 2010-07-30 | 1 | -0/+3 |
| | | | | top-level debugged frame. | ||||
* | #5727: Restore the ability to use readline when calling into pdb in doctests. | Georg Brandl | 2010-07-30 | 1 | -0/+3 |
| | |||||
* | #6719: In pdb, do not stop somewhere in the encodings machinery if the ↵ | Georg Brandl | 2010-07-30 | 1 | -0/+3 |
| | | | | 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 | 1 | -0/+3 |
| | | | | been reassigned. | ||||
* | #8015: fix crash when entering an empty line for breakpoint commands. Also ↵ | Georg Brandl | 2010-07-30 | 1 | -0/+3 |
| | | | | restore environment properly when an exception occurs during the definition of commands. | ||||
* | Allow giving an explicit line number to "until". | Georg Brandl | 2010-07-30 | 1 | -0/+2 |
| | |||||
* | #1437051: allow "continue"/"next"/etc. in .pdbrc, also add pdb -c option to ↵ | Georg Brandl | 2010-07-30 | 1 | -0/+4 |
| | | | | give these commands. This allows to run a script until an exception occurs. | ||||
* | #4179: In pdb, allow "list ." as a command to return to the currently ↵ | Georg Brandl | 2010-07-30 | 1 | -0/+3 |
| | | | | debugged line. | ||||
* | Issue #9422: Fix memory leak when re-initializing a struct.Struct object. | Mark Dickinson | 2010-07-29 | 1 | -0/+2 |
| | |||||
* | #4108: the first default entry (User-agent: *) wins. | Georg Brandl | 2010-07-29 | 1 | -0/+3 |
| | |||||
* | #6630: allow customizing flags for compiling string.Template.idpattern. | Georg Brandl | 2010-07-29 | 1 | -0/+3 |
| | |||||
* | #9411: allow selecting an encoding for configparser files. Also adds a new ↵ | Georg Brandl | 2010-07-29 | 1 | -0/+3 |
| | | | | test config file to test special cases. | ||||
* | #1682942: add some ConfigParser features: alternate delimiters, alternate ↵ | Georg Brandl | 2010-07-28 | 1 | -0/+3 |
| | | | | 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 | 2 | -1/+3 |
| | |||||
* | Issue #8991: convertbuffer() rejects discontigious buffers | Victor Stinner | 2010-07-28 | 1 | -0/+2 |
| | |||||
* | Issue #8966: ctypes: Remove implicit bytes-unicode conversion | Victor Stinner | 2010-07-28 | 1 | -0/+2 |
| | |||||
* | Issue #9378: python -m pickle <pickle file> will now load and display | Alexander Belopolsky | 2010-07-27 | 1 | -0/+3 |
| | | | | the first object in the pickle file. | ||||
* | Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg. | Antoine Pitrou | 2010-07-27 | 1 | -0/+1 |
| | |||||
* | Issue #4770: Restrict binascii module to accept only bytes (as specified). | Florent Xicluna | 2010-07-27 | 1 | -0/+4 |
| | | | | 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 Belopolsky | 2010-07-27 | 1 | -0/+2 |
| | |||||
* | The default size of the re module's compiled regular expression cache has | Gregory P. Smith | 2010-07-27 | 1 | -0/+7 |
| | | | | | | | | 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. | ||||
* | Add Reid. | Georg Brandl | 2010-07-26 | 1 | -0/+4 |
| | |||||
* | Add Brian Quinlan. | Georg Brandl | 2010-07-26 | 1 | -0/+3 |
| | |||||
* | Add note about #7113 and add Łukasz Langa to ACKS | Brian Curtin | 2010-07-26 | 2 | -0/+3 |
| | |||||
* | Issue #4686 - add .args to exceptions in the configparsermodule | Michael Foord | 2010-07-25 | 1 | -1/+1 |
| | |||||
* | #9032: XML-RPC client: Transport.request() retries on EPIPE error | Victor Stinner | 2010-07-24 | 1 | -0/+4 |
| | | | | | | | | | | | | The EPIPE error occurs when the server closes the socket and the client sends a "big" XML-RPC request (I don't know exactly the size threshold). request() just have to ignore the error because single_request() closes the socket on error, and so the next call to single_request() will open a new socket. Remove also a comment in the HTTP client because it's now wrong: see r70643 and issue #5542. | ||||
* | Issue #4629: getopt raises an error if an argument ends with = whereas getopt | Victor Stinner | 2010-07-24 | 1 | -0/+4 |
| | | | | | doesn't except a value (eg. --help= is rejected if getopt uses ['help='] long options). | ||||
* | Issue #7989: Added pure python implementation of the datetime module. | Alexander Belopolsky | 2010-07-23 | 1 | -0/+8 |
| | |||||
* | Add Brian Brazil. | Brett Cannon | 2010-07-23 | 1 | -0/+1 |
| | |||||
* | Test calendar.monthrange. | Brett Cannon | 2010-07-23 | 1 | -0/+1 |
| | | | | Closes issue 9342. Thanks John Chandler for the patch. | ||||
* | This fixes issue7900 by adding code that deals | Ronald Oussoren | 2010-07-23 | 1 | -0/+7 |
| | | | | | | | | | with the fact that getgroups(2) might return more that MAX_GROUPS on OSX. See the issue (and python-dev archives) for the gory details. Summarized: OSX behaves rather oddly and Apple says this is intentional. | ||||
* | Issue #6095: Make directory argument to os.listdir optional. | Martin v. Löwis | 2010-07-23 | 1 | -0/+2 |
| | | | | Patch by Virgil Dupras. | ||||
* | Fix for issue 7895. Avoid crashing the interpreter | Ronald Oussoren | 2010-07-23 | 1 | -0/+2 |
| | | | | | | when calling platform.mac_ver after calling os.fork by reading from a system configuration file instead of using OSX APIs. | ||||
* | Document the fact that the 'test' package is meant only for use by Python | Brett Cannon | 2010-07-23 | 1 | -0/+3 |
| | | | | | | itself and not by others. Closes issue 9255. | ||||
* | Issue #9323: Fixed a bug in trace.py that resulted in loosing the name | Alexander Belopolsky | 2010-07-21 | 2 | -1/+4 |
| | | | | of the script being traced. Patch by Eli Bendersky. | ||||
* | Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli | Alexander Belopolsky | 2010-07-20 | 2 | -0/+4 |
| | | | | Bendersky for the patch. | ||||
* | Fixes Issue #3704: http.cookiejar was not properly handling URLs with a / in | Gregory P. Smith | 2010-07-19 | 1 | -0/+3 |
| | | | | the parameters. (This is jjlee's issue3704.patch ported to py3k) | ||||
* | Clarify Misc/NEWS entry. | Mark Dickinson | 2010-07-18 | 1 | -2/+2 |
| | |||||
* | Misc/NEWS entry for r82941. | Mark Dickinson | 2010-07-18 | 1 | -0/+5 |
| | |||||
* | Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x | Alexander Belopolsky | 2010-07-17 | 1 | -0/+3 |
| | | | | python when they contain instances of old-style classes. | ||||
* | sharedinstall should depend on sharedmods #9280 | Benjamin Peterson | 2010-07-17 | 1 | -0/+2 |
| | |||||
* | Issue #9268: Add annotation option to pickletools.dis | Alexander Belopolsky | 2010-07-17 | 1 | -0/+4 |
| | |||||
* | #1555570: correctly handle a \r\n that is split by the read buffer. | R. David Murray | 2010-07-17 | 1 | -0/+3 |
| | | | | Patch and test by Tony Nelson. | ||||
* | Issue #9251: test_threaded_import didn't fail when run through regrtest | Antoine Pitrou | 2010-07-14 | 1 | -0/+3 |
| | | | | if the import lock was disabled. | ||||
* | Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee. | Victor Stinner | 2010-07-13 | 2 | -0/+3 |
| |