summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18347: ElementTree's html serializer now preserves the case of ↵Christian Heimes2013-07-043-3/+16
| | | | closing tags.
* Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé.Antoine Pitrou2013-07-042-1/+9
|
* Closes #18312: 'make distclean' no longer deletes files in dot-directories.Eric V. Smith2013-07-021-5/+5
|
* Issue #17261: Ensure multiprocessing's proxies use proper address.Richard Oudkerk2013-07-022-0/+3
|
* Issue #14206: Clarify docs for Queue.join_cancel_thread().Richard Oudkerk2013-07-021-0/+7
|
* Issue #17273: Clarify that pool methods can only be used by parent process.Richard Oudkerk2013-07-021-0/+6
|
* Issue #17097: Make multiprocessing ignore EINTR.Richard Oudkerk2013-07-014-11/+127
|
* Issue #7136: In the Idle File menu, "New Window" is renamed "New File".Terry Jan Reedy2013-07-014-4/+7
| | | | Patch by Tal Einat, Roget Serwy, and Todd Rovito.
* Issue #8515: Set __file__ when run file in IDLE. Backport 2c276d0553ff byTerry Jan Reedy2013-06-303-6/+10
| | | | Andrew Svetlov, based on initial patch by Bruce Frederiksen.
* Issue #18189: add test_delegator for Idle Delegator class.Terry Jan Reedy2013-06-302-3/+40
| | | | Also change private dict used as a set to a set.
* Issue 18189: remove unused methods in idlelib.Delegator.Delegator.Terry Jan Reedy2013-06-301-8/+0
| | | | | Idle code already uses x.delegate instead of x.getdelegate(). The printed report must have been for testing.
* Tempfile.py: stop buildbot warning about using deprecated xreadlines.Terry Jan Reedy2013-06-301-3/+3
| | | | | | The slightly odd behavior (the validity of passing a sizehint depends on the type of self._file) was kept to avoid breaking code that depends on it. Test_tempfile.test_xreadlines passes (along with everything else).
* #18155: Regex-escape delimiter, in case it is a regex special char.R David Murray2013-06-294-6/+48
| | | | Patch by Vajrasky Kok, with slight modification to the tests by me.
* Issue #18103: Update README.txt and test_idle to describe and run gui tests.Terry Jan Reedy2013-06-292-27/+69
|
* Issue #18237: Fix assertRaisesRegexp error caought by Jeff Tratner.Terry Jan Reedy2013-06-291-1/+1
|
* Issue #18316: Update idlelib 2.7 except clauses to ease backports.Terry Jan Reedy2013-06-297-15/+15
|
* Issue *18081, #18242: Change Idle warnings capture in PyShell and run to stopTerry Jan Reedy2013-06-293-47/+164
| | | | | | replacing warnings.formatwarnings and to reverse replacement of warnings.showwarnings when import is complete and when main function exits. Add test_warning.py. Vinay Sajip provided capture_warnings function.
* Issue #18315: Improve fileinput docs by adding 'bufsize' where missing andTerry Jan Reedy2013-06-283-8/+8
| | | | | replacing redundant signature in input() docstring with one-line summary. Original patch by Terrel Shumway.
* reapply f1dc30a1be72Benjamin Peterson2013-06-251-1/+1
|
* reapply 5accb0ac8bfbBenjamin Peterson2013-06-252-12/+8
|
* reapply f1dc30a1be72Benjamin Peterson2013-06-251-1/+1
|
* reapply f1dc30a1be72Benjamin Peterson2013-06-251-1/+1
|
* Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the inputVictor Stinner2013-06-242-8/+10
| | | | | string in longer than 2 gigabytes. The ssl module does not support partial write.
* Issue #18164: Backport the more detailed embedding compile-and-link sectionNed Deily2013-06-241-28/+46
| | | | from the Python 3 documentation.
* Fix typo.Richard Oudkerk2013-06-241-1/+1
|
* Clarify note and fix typo.Richard Oudkerk2013-06-241-2/+3
|
* Issue #15818: Typo in docs.Richard Oudkerk2013-06-241-3/+3
|
* Issue #18277: Document quirks of multiprocessing queue.Richard Oudkerk2013-06-241-0/+17
|
* Merge heads.R David Murray2013-06-232-32/+43
|\
| * #18179: reflow paragraphs.R David Murray2013-06-232-39/+41
| |
| * #18179: document the local_hostname parameter.R David Murray2013-06-232-6/+15
| | | | | | | | Original patch by Berker Peksag.
* | also backout f1dc30a1be72 for not being a bugfixBenjamin Peterson2013-06-231-1/+1
| |
* | Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raiseSerhiy Storchaka2013-06-232-1/+21
|/ | | | OverflowError when an argument of %c format is out of range.
* Solaris' /dev/null is a symlink. The device test now uses stat instead of ↵Christian Heimes2013-06-231-4/+8
| | | | | | lstat to compensate for symlinks.
* Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()Victor Stinner2013-06-232-1/+9
| | | | for strings longer than 2 gigabytes.
* Issue #18137: Detect integer overflow on precision in float.__format__()Victor Stinner2013-06-233-2/+34
| | | | and complex.__format__().
* #18151, part 2: Silence debug build resource warning for each file opened byTerry Jan Reedy2013-06-222-24/+100
| | | | | | 'Find in files' by replacing 'open with implicit close' by 'with open' in GrepDialog method grep_it. Streamline code with enumerate(), direct file iteration, and output tweak. Add test for this method, including output format.
* backout 5accb0ac8bfb; needs more discussion on python-devBenjamin Peterson2013-06-222-8/+12
|
* transplant test_stat from default to 2.7 in order to make sure it works on ↵Christian Heimes2013-06-221-0/+171
| | | | all supported platforms
* #18113: avoid segfault if Py_XDECREF triggers code that calls ↵Andrew Kuchling2013-06-222-3/+17
| | | | | | set_panel_userptr again Problem noted & original patch by Serhiy Storchaka; I tweaked the patch a bit.
* Arrange structure to match the common access patterns.Raymond Hettinger2013-06-221-1/+1
|
* Tweak programming faq examples so that it (mostly) passes doctest.R David Murray2013-06-191-18/+19
| | | | | | | | Back port of 0113247f894b from 3.3. The exceptions are the import related questions at the end, which need to be rewritten anyway, and a math example that doesn't exist in the 3.3+ docs that I didn't bother trying to fix.
* Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.Antoine Pitrou2013-06-183-0/+7
|
* Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if ↵Christian Heimes2013-06-184-2/+8
| | | | it's available
* ctypes: AIX needs an explicit #include <alloca.h> to get alloca()Victor Stinner2013-06-171-0/+1
|
* Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-dataSerhiy Storchaka2013-06-173-0/+35
| | | | when \r\n appears at end of 65535 bytes without other newlines.
* #18113: Objects associated to a curses.panel object with set_userptr() were ↵Andrew Kuchling2013-06-153-0/+20
| | | | | | leaked. Reported by Atsuo Ishimoto.
* Fix comment blocks. Adjust blocksize to a power-of-two for better divmod ↵Raymond Hettinger2013-06-142-12/+8
| | | | computations.
* #5492: Avoid traceback when exiting IDLE caused by a race condition.Roger Serwy2013-06-122-6/+7
|
* Issue #18186: remove obsolete 2.2 compatibility comment.Ned Deily2013-06-111-2/+0
|