summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ↵Andrew Svetlov2012-08-042-5/+29
| | | | | | ended with '\'. Patch by Roger Serwy.
* add missing period; thanks to Gaston Fiore from docs@Sandro Tosi2012-08-041-1/+1
|
* Close #13119: use "\r\n" newline for sys.stdout/err on WindowsVictor Stinner2012-08-033-5/+28
| | | | sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
* open() / TextIOWrapper doc: make it explicit than newline='\n' doesn'tVictor Stinner2012-08-034-12/+12
| | | | translate newlines on output.
* Make TextIOWrapper's documentation clearer by copying the newline argument's ↵Antoine Pitrou2012-08-032-17/+32
| | | | description from open().
* #15512: Remove remnants of debugging codeJesus Cea2012-08-031-2/+0
|
* Closes #15469: Correct __sizeof__ support for dequeJesus Cea2012-08-033-1/+39
|
* Closes #15512: Correct __sizeof__ support for parserJesus Cea2012-08-035-1/+85
|
* Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation ↵Antoine Pitrou2012-08-023-2/+5
| | | | | | code. Patch by Philipp Hagemeister.
* Issue #15321: update PyPI upload doc to say --no-raw passed to rst2html.pyEli Bendersky2012-08-011-1/+5
|
* Issue #8847: Disable COMDAT folding in Windows PGO builds.Martin v. Löwis2012-08-014-1/+19
| | | | Analysis by Victor Stinner. Patch by Stefan Krah.
* Issue #9803: Don't close IDLE on saving if breakpoint is open.Andrew Svetlov2012-07-312-2/+5
| | | | Patch by Roger Serwy.
* Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter ↵Andrew Svetlov2012-07-303-1/+5
| | | | SimpleDialog.
* Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs.Ned Deily2012-07-302-0/+5
|
* Issue #14018: Update the OS X IDLE Tcl/Tk warning check to includeNed Deily2012-07-302-6/+14
| | | | | the Apple-supplied Tck/Tk versions shipped with OS X 10.7 and 10.8. They are not as buggy as the 10.6 version but can still easily crash.
* Issue #15489: Add a __sizeof__ implementation for BytesIO objects.Antoine Pitrou2012-07-293-0/+26
| | | | Patch by Serhiy Storchaka.
* Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.Antoine Pitrou2012-07-293-3/+34
| | | | Patch by Serhiy Storchaka.
* Issue #15467: Move helpers for __sizeof__ tests into test_support.Martin v. Löwis2012-07-294-148/+124
| | | | Patch by Serhiy Storchaka.
* Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.Meador Inge2012-07-292-16/+43
|
* Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.Richard Oudkerk2012-07-274-1/+44
| | | | Original patch by J Derek Wilson.
* Improved cookbook entry and fixed typo.Vinay Sajip2012-07-271-3/+3
|
* Issue #15041: update "see also" list in tkinter documentation.Andrew Svetlov2012-07-262-3/+20
|
* Issue #15320: Make iterating the list of tests thread-safe when running ↵Antoine Pitrou2012-07-252-12/+31
| | | | | | tests in multiprocess mode. Patch by Chris Jerdonek.
* Mention the *limit* argument of TextIO.readline().Antoine Pitrou2012-07-251-1/+3
|
* Issue #15445: Updated logging configuration documentation to highlight ↵Vinay Sajip2012-07-251-0/+19
| | | | potential security risk posed by listen() in certain scenarios.
* Issue #7163: Propagate return value of sys.stdout.write.Martin v. Löwis2012-07-253-3/+7
| | | | Patch by Roger Serwy.
* Issue #15318: Prevent writing to sys.stdin.Martin v. Löwis2012-07-253-5/+38
| | | | Patch by Roger Serwy and myself.
* #15232: make NEWS entry more accurate.R David Murray2012-07-241-1/+1
|
* Issue #14197: For OS X framework builds, ensure links to the sharedNed Deily2012-07-243-1/+8
| | | | library are created with the proper ABI suffix.
* Rollback an incorrect Doc/ACKS.txt entryJesus Cea2012-07-231-1/+0
|
* Better test for Issue #15402: Add a __sizeof__ method to struct.StructJesus Cea2012-07-232-4/+5
|
* Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-233-0/+31
| | | | Initial patch by Serhiy Storchaka.
* merge heads.Senthil Kumaran2012-07-233-2/+35
|\
| * #15232: correctly mangle From lines in MIME preamble and epilogueR David Murray2012-07-233-2/+35
| |
* | - Issue #15250: Document that filecmp.dircmp compares files shallowly. Patch ↵Senthil Kumaran2012-07-232-3/+11
|/ | | | contributed by Chris Jerdonek.
* #15429: Fix invalid mention of types.NoneType from None docs.R David Murray2012-07-231-1/+1
|
* Consistently raise a TypeError when a non str is passed to hashlib.newGregory P. Smith2012-07-222-7/+4
| | | | regardless of which of the two implementations of new is used.
* #13922: argparse no longer incorrectly strips '--' after the first one.R David Murray2012-07-224-14/+35
| | | | Patch by Jeff Knupp.
* #12353: argparse now correctly handles null argument values.R David Murray2012-07-223-1/+4
| | | | Patch by Torsten Landschoff.
* #14391: clarify docstring discussion of Action's 'type' argument's value.R David Murray2012-07-211-4/+4
|
* #15342: Add clarifying sentence to posixpath.join docstring.R David Murray2012-07-211-1/+2
| | | | | | This sentence appears as a clarifying note in the HTML docs, and seems worth having in the docstring since it covers a very common use case that isn't otherwise obvious. Thanks to Yongzhi Pan for the suggestion.
* Raise ImportError if pyexpat's version is incompatibleEli Bendersky2012-07-211-4/+7
|
* Fix test_pprint random dict ordering.Florent Xicluna2012-07-211-2/+3
|
* Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with ↵Florent Xicluna2012-07-213-1/+17
| | | | unorderable key.
* Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after ↵Antoine Pitrou2012-07-203-35/+50
| | | | | | error handling. Patch by Serhiy Storchaka.
* Issue #15406: Fix deprecation warning in ctypes test_bitfields.pyMeador Inge2012-07-202-4/+5
| | | | Patch by Flávio Ribeiro.
* Issue #15404: Refleak in PyMethodObject repr.Andrew Svetlov2012-07-202-1/+5
|
* Issue #15399: Added versionchanged for processName.Vinay Sajip2012-07-201-0/+3
|
* Closes #15395: memory leaks in selectmodule.cJesus Cea2012-07-191-1/+2
|
* Closes #15396: memory leak in tkinterJesus Cea2012-07-192-1/+4
|