Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #17299: Add test coverage for cPickle with file objects and general IO | Serhiy Storchaka | 2013-03-14 | 1 | -0/+1 |
| | | | | objects. Original patch by Aman Shah. | ||||
* | Issue #11367: fix documentation of some find* methods in ElementTree | Eli Bendersky | 2013-03-12 | 1 | -0/+1 |
| | |||||
* | Issue #17332: fix json doc typo /convered/converted/ found by Ernie Hershey. | Terry Jan Reedy | 2013-03-09 | 1 | -0/+1 |
| | |||||
* | #17275: Fix class name in init errors in C bufferedio classes. | R David Murray | 2013-02-24 | 1 | -0/+1 |
| | | | | | | This fixes an apparent copy-and-paste error. Original patch by Manuel Jacob. | ||||
* | Revert "Issue #16121: Fix line number accounting in shlex" | Petri Lehtinen | 2013-02-23 | 1 | -1/+0 |
| | |||||
* | Issue #16121: Fix line number accounting in shlex | Petri Lehtinen | 2013-02-23 | 1 | -0/+1 |
| | |||||
* | Issue #8890: Stop advertising an insecure use of /tmp in docs | Petri Lehtinen | 2013-02-23 | 1 | -0/+1 |
| | |||||
* | Issue #14720: sqlite3: Convert datetime microseconds correctly | Petri Lehtinen | 2013-02-23 | 1 | -0/+1 |
| | | | | Patch by Lowe Thiderman | ||||
* | Issue #5033: Fix building of the sqlite3 extension module | Petri Lehtinen | 2013-02-23 | 1 | -0/+1 |
| | |||||
* | #17255: test short-circuiting behavior of any()/all(). Patch by Wim Glenn. | Ezio Melotti | 2013-02-21 | 1 | -0/+1 |
| | |||||
* | #17178: update any()/all() docstrings to document their behavior with empty ↵ | Ezio Melotti | 2013-02-15 | 1 | -0/+1 |
| | | | | iterables. Patch by Ankur Ankan. | ||||
* | Issue #16800: tempfile.gettempdir() no longer left temporary files when | Serhiy Storchaka | 2013-02-12 | 1 | -0/+1 |
| | | | | the disk is full. Original patch by Amir Szekely. | ||||
* | fix find_library on Solaris (closes #5289) | Benjamin Peterson | 2013-02-04 | 1 | -0/+1 |
| | |||||
* | Add Robert Xiao to Misc/ACKS for issue17051. | Serhiy Storchaka | 2013-01-28 | 1 | -0/+1 |
| | |||||
* | Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL. | Charles-François Natali | 2013-01-19 | 1 | -0/+1 |
| | | | | Patch by Jeffrey Armstrong. | ||||
* | #16154: fix some doctests in Doc/library. Patch by Ravi Sinha. | Ezio Melotti | 2013-01-11 | 1 | -0/+1 |
| | |||||
* | #13899: \A, \Z, and \B now correctly match the A, Z, and B literals when ↵ | Ezio Melotti | 2013-01-11 | 1 | -0/+1 |
| | | | | used inside character classes (e.g. [A]). Patch by Matthew Barnett. | ||||
* | Issue #16828: Fix error incorrectly raised by bz2.compress(''). | Nadeem Vawda | 2013-01-02 | 1 | -0/+1 |
| | | | | Patch by Martin Packman. | ||||
* | add Tom Tromey to ACKS | Benjamin Peterson | 2013-01-02 | 1 | -0/+1 |
| | |||||
* | Issue #16443: Add docstrings to regular expression match objects. | Andrew Svetlov | 2012-12-23 | 1 | -0/+1 |
| | | | | Patch by Anton Kasyanov. | ||||
* | #16664: Add regression tests for glob's behaviour concerning "."-entries | Hynek Schlawack | 2012-12-16 | 1 | -0/+1 |
| | | | | Patch by Sebastian Kreft. | ||||
* | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵ | Antoine Pitrou | 2012-12-15 | 1 | -0/+1 |
| | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein. | ||||
* | Branch merge | Éric Araujo | 2012-12-09 | 1 | -0/+2 |
|\ | |||||
| * | Fix setup.py register failure with invalid rst in description (#13614). | Éric Araujo | 2012-12-09 | 1 | -0/+2 |
| | | | | | | | | Original patch by Julien Courteau and Pierre Paul Lefebvre. | ||||
* | | Issue #16602: When a weakref's target was part of a long deallocation chain, ↵ | Antoine Pitrou | 2012-12-08 | 1 | -0/+1 |
|/ | | | | | | the object could remain reachable through its weakref even though its refcount had dropped to zero. Thanks to Eugene Toder for diagnosing and reporting the issue. | ||||
* | Drop double newlines printed in some file iteration examples. | Andrew Svetlov | 2012-12-08 | 1 | -0/+1 |
| | | | | Patch by Steven Kryskalla. | ||||
* | Add Bruno Dupuis | Benjamin Peterson | 2012-11-30 | 1 | -0/+1 |
| | |||||
* | #16549: Add tests for json.tools. Initial patch by Berker Peksag and Serhiy ↵ | Ezio Melotti | 2012-11-29 | 1 | -0/+1 |
| | | | | Storchaka. | ||||
* | #16306: Fix multiple error messages when unknown command line parameters ↵ | Ezio Melotti | 2012-11-18 | 1 | -0/+1 |
| | | | | where passed to the interpreter. Patch by Hieu Nguyen. | ||||
* | Issue #15677: Document that zlib and gzip accept a compression level of 0 to ↵ | Nadeem Vawda | 2012-11-11 | 1 | -0/+1 |
| | | | | | | mean 'no compression'. Patch by Brian Brazil. | ||||
* | #16152: fix tokenize to ignore whitespace at the end of the code when no ↵ | Ezio Melotti | 2012-11-03 | 1 | -0/+1 |
| | | | | newline is found. Patch by Ned Batchelder. | ||||
* | #14897: Enhance error messages of struct.pack and struct.pack_into | Petri Lehtinen | 2012-10-29 | 1 | -1/+2 |
| | | | | Patch by Matti Mäki. | ||||
* | #8040: add a version switcher to the documentation. Patch by Yury Selivanov. | Ezio Melotti | 2012-10-27 | 1 | -0/+1 |
| | |||||
* | #12890: don't emit <p> tags in text mode when logdir specified. | R David Murray | 2012-10-27 | 1 | -0/+1 |
| | | | | Patch by Jeff McNeil. | ||||
* | #16210: combine the two type() docs. Patch by Pete Sevander. | Ezio Melotti | 2012-10-24 | 1 | -0/+1 |
| | |||||
* | #15040: Close files in mailbox tests for PyPy compatibility | Petri Lehtinen | 2012-10-23 | 1 | -0/+1 |
| | | | | Original patch by Matti Picus. | ||||
* | Issue #16220: wsgiref now always calls close() on an iterable response. | Antoine Pitrou | 2012-10-21 | 1 | -0/+1 |
| | | | | Patch by Brent Tubbs. | ||||
* | Issue #9583: Document startup option/environment interaction. | Andrew Svetlov | 2012-10-17 | 1 | -0/+1 |
| | | | | Patch by Todd Rovito. | ||||
* | Issue #14900: Distuguish call count and primitive call count in pstat output. | Andrew Svetlov | 2012-10-07 | 1 | -0/+2 |
| | | | | Patch by Arne Babenhauserheide. | ||||
* | Backed out changeset 5abacebec9d2 | Jesus Cea | 2012-10-04 | 1 | -0/+1 |
| | |||||
* | Backed out changeset c73b90b6dadd | Jesus Cea | 2012-10-04 | 1 | -1/+0 |
| | |||||
* | Closes #16112: platform.architecture does not correctly escape argument to ↵ | Jesus Cea | 2012-10-04 | 1 | -0/+1 |
| | | | | /usr/bin/file | ||||
* | Fix Misc/ACKS alphabetic order | Jesus Cea | 2012-10-03 | 1 | -1/+1 |
| | |||||
* | Closes #15897: zipimport.c doesn't check return value of fseek() | Jesus Cea | 2012-10-03 | 1 | -0/+1 |
| | |||||
* | #15437, #15439: merge Doc/ACKS.txt with Misc/ACKS and modify Doc/about.rst ↵ | Ezio Melotti | 2012-09-13 | 1 | -4/+115 |
| | | | | accordingly. | ||||
* | #15676: Proper attribution in Misc/ACKS | Jesus Cea | 2012-09-10 | 1 | -0/+1 |
| | |||||
* | Issue #15841: The readable(), writable() and seekable() methods of io.BytesIO | Antoine Pitrou | 2012-09-05 | 1 | -0/+1 |
| | | | | | and io.StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura. | ||||
* | #12776,#11839: call argparse type function only once. | R David Murray | 2012-09-01 | 1 | -0/+1 |
| | | | | | | | | | Before, the type function was called twice in the case where the default was specified and the argument was given as well. This was especially problematic for the FileType type, as a default file would always be opened, even if a file argument was specified on the command line. Patch by Arnaud Fontaine, with additional test by Mike Meyer. | ||||
* | #15199: Fix JavaScript's default MIME type to application/javascript | Petri Lehtinen | 2012-08-20 | 1 | -0/+1 |
| | |||||
* | Issue #15615: Add some tests for the json module's handling of invalid input ↵ | Antoine Pitrou | 2012-08-18 | 1 | -0/+1 |
| | | | | | | data. Patch by Kushal Das. |