summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #14167: Document return statement in finally blocks.Andrew Svetlov2012-08-141-6/+17
| | | | Patch by Yury Selivanov.
* Issue #15646: Prevent equivalent of a fork bomb when using multiprocessingRichard Oudkerk2012-08-144-2/+40
| | | | on Windows without the "if __name__ == '__main__'" idiom.
* Restore original line lengths.Georg Brandl2012-08-142-32/+26
|
* Fix #15496. Add directory removal helpers to make Windows tests more ↵Brian Curtin2012-08-132-2/+69
| | | | reliable. Patch by Jeremy Kloth
* Issue #15497: Correct characters in TextWrapper.replace_whitespace docs.Andrew Svetlov2012-08-131-3/+5
| | | | Patch by Chris Jerdonek.
* Issue #15561: Update subprocess docs to reference io.TextIOWrapper.Andrew Svetlov2012-08-131-19/+21
| | | | Patch by Chris Jerdonek.
* Issue #15624: clarify newline documentation for open and io.TextIOWrapperAndrew Svetlov2012-08-132-24/+30
| | | | Thanks to Chris Jerdonek
* Issue #15630: Add an example for "continue" statement in the tutorial. Patch bySenthil Kumaran2012-08-122-3/+19
| | | | Daniel Ellis.
* add usage example from cli; thanks to Christian Clauss from docs@Sandro Tosi2012-08-121-1/+3
|
* escape '\'; thanks to Steve Holden from docs@Sandro Tosi2012-08-121-1/+1
|
* it's getstatus() not setstatus(); thanks to Shaddi Hasan from docs@Sandro Tosi2012-08-121-1/+1
|
* add missing quote in splitlines() example; thanks to Yevgen Yampolskiy from ↵Sandro Tosi2012-08-121-1/+1
| | | | docs@
* update Geany URL; thanks to Karl Tarbet from docs@Sandro Tosi2012-08-121-1/+1
|
* add missing parenthesis to 'action' argparse doc; thanks to kishkin from docs@Sandro Tosi2012-08-121-1/+1
|
* zip() returns an iterator, make a list() of it; thanks to Martin from docs@Sandro Tosi2012-08-121-1/+1
|
* Issue #15444: Use proper spelling for non-ASCII contributor names.Antoine Pitrou2012-08-1111-21/+24
| | | | Patch by Serhiy Storchaka.
* Remove unused variables in parsetok().Georg Brandl2012-08-111-2/+1
|
* Revert 961a15aff2a6, this is already checked in another way.Georg Brandl2012-08-111-3/+1
|
* Closes #15620: check for presence of readline.clear_history(), which is ↵Georg Brandl2012-08-111-1/+3
| | | | apparently missing on some readline versions, before calling it in the test.
* Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-114-0/+32
| | | | Patch by Ludwig Hähne.
* fix docs for c-api memory functionsAndrew Svetlov2012-08-091-3/+3
|
* Issue #15501: Document exception classes in subprocess module.Andrew Svetlov2012-08-092-0/+21
| | | | Initial patch by Anton Barkovsky.
* Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test caseNed Deily2012-08-091-1/+4
| | | | failure on OS X built with 10.4 ABI.
* #15554: clarify splitlines/split differences.R David Murray2012-08-061-5/+8
| | | | Patch by Chris Jerdonek.
* Issue #15482: Properly document the default 'level' parameter forBrett Cannon2012-08-062-5/+11
| | | | | | | __import__(). To help explain why the -1 default value is typically not seen, a note about how import statements only use values of >= 0 is also noted.
* Issue #15560: Fix building _sqlite3 extension on OS X with an SDK.Ned Deily2012-08-052-4/+6
|
* Fix CGI tests to take into account the platform's line ending (issue #13119)Antoine Pitrou2012-08-051-5/+7
|
* Fix universal newlines test to avoid the newline translation done by sys.stdout.Antoine Pitrou2012-08-041-26/+28
|
* Fix test_sys under Windows (issue #13119)Antoine Pitrou2012-08-041-1/+2
|
* 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
|