]> granicus.if.org Git - python/log
python
9 years agoClose #10128: don't rerun __main__.py in multiprocessing
Nick Coghlan [Thu, 19 Nov 2015 02:59:39 +0000 (12:59 +1000)]
Close #10128: don't rerun __main__.py in multiprocessing

- backports issue #10845's mitigation of incompatibilities between
  the multiprocessing module and directory and zipfile execution
- Multiprocessing on Windows will now automatically skip rerunning top
  level __main__.py modules in spawned processes, rather than failing
  with AssertionError

9 years agoIssue #23200: Document that max_length=0 is not supported
Martin Panter [Wed, 18 Nov 2015 00:59:17 +0000 (00:59 +0000)]
Issue #23200: Document that max_length=0 is not supported

9 years agoIssue #20468: Remove incorrect information about maxrss and page size
Martin Panter [Tue, 17 Nov 2015 22:13:47 +0000 (22:13 +0000)]
Issue #20468: Remove incorrect information about maxrss and page size

Extract of patch by Ronald Oussoren.

9 years agoIssue #25615: Document unsorted behaviour of glob; patch by Dave Jones
Martin Panter [Mon, 16 Nov 2015 23:46:22 +0000 (23:46 +0000)]
Issue #25615: Document unsorted behaviour of glob; patch by Dave Jones

9 years agoIssue #24750: whitespace
Terry Jan Reedy [Mon, 16 Nov 2015 12:36:12 +0000 (07:36 -0500)]
Issue #24750: whitespace

9 years agoIssue #24750: Improve appearance of IDLE editor window status bar.
Terry Jan Reedy [Mon, 16 Nov 2015 12:32:19 +0000 (07:32 -0500)]
Issue #24750: Improve appearance of IDLE editor window status bar.
Patch by Mark Roseman.

9 years agorm trailing ws
Benjamin Peterson [Sat, 14 Nov 2015 23:12:38 +0000 (15:12 -0800)]
rm trailing ws

9 years agofix possible memory lea k in _get_aia_uri (closes #25578)
Benjamin Peterson [Sat, 14 Nov 2015 23:12:18 +0000 (15:12 -0800)]
fix possible memory lea k in _get_aia_uri (closes #25578)

9 years agoIssue #25388: Fixed tokenizer hang when processing undecodable source code
Serhiy Storchaka [Sat, 14 Nov 2015 13:14:29 +0000 (15:14 +0200)]
Issue #25388: Fixed tokenizer hang when processing undecodable source code
with a null byte.

9 years agofix build with older openssl (#25569)
Benjamin Peterson [Sat, 14 Nov 2015 08:09:22 +0000 (00:09 -0800)]
fix build with older openssl (#25569)

9 years agoIssue #25017: Document that htmllib is superseded by module HTMLParser
Martin Panter [Sat, 14 Nov 2015 00:30:46 +0000 (00:30 +0000)]
Issue #25017: Document that htmllib is superseded by module HTMLParser

9 years agoIssue #25590: Make rlcompleter only call getattr() once per attribute
Martin Panter [Fri, 13 Nov 2015 22:47:00 +0000 (22:47 +0000)]
Issue #25590: Make rlcompleter only call getattr() once per attribute

Previously it was called another time via hasattr(), and both calls were
made once for dir(f) and again for dir(f.__class__).  This includes a
backport of changing from a list to a set from revision 4dbb315fe667.

9 years agoIssue #25605: Document exceptions raised by fcntl.ioctl() and fcntl.flock()
Victor Stinner [Fri, 13 Nov 2015 08:13:16 +0000 (09:13 +0100)]
Issue #25605: Document exceptions raised by fcntl.ioctl() and fcntl.flock()

9 years agoSecond instance of deque needing "len" instead of "Py_SIZE" in Py2.7
Raymond Hettinger [Fri, 13 Nov 2015 02:20:21 +0000 (18:20 -0800)]
Second instance of deque needing "len" instead of "Py_SIZE" in Py2.7

9 years agoIndent
Terry Jan Reedy [Thu, 12 Nov 2015 20:24:22 +0000 (15:24 -0500)]
Indent

9 years agoWhitespace
Terry Jan Reedy [Thu, 12 Nov 2015 20:06:02 +0000 (15:06 -0500)]
Whitespace

9 years agoIssue #25313: Change the handling of new built-in text color themes to better
Terry Jan Reedy [Thu, 12 Nov 2015 20:02:50 +0000 (15:02 -0500)]
Issue #25313: Change the handling of new built-in text color themes to better
address the compatibility problem introduced by the addition of IDLE Dark.
Consistently use the revised idleConf.CurrentTheme everywhere in idlelib.

9 years agoIssue #25607: Restore old distutils logging threshold after running tests that
Serhiy Storchaka [Thu, 12 Nov 2015 17:46:23 +0000 (19:46 +0200)]
Issue #25607: Restore old distutils logging threshold after running tests that
parse command line arguments.

9 years agoDocument the BUILD_SET opcode.
Zachary Ware [Thu, 12 Nov 2015 16:02:06 +0000 (10:02 -0600)]
Document the BUILD_SET opcode.

Reported by Hrvoje Abraham on docs@.

9 years agoDeque uses "len" instead of varhead in Py2.7
Raymond Hettinger [Thu, 12 Nov 2015 15:18:45 +0000 (07:18 -0800)]
Deque uses "len" instead of varhead in Py2.7

9 years agoIssue #22995: Default implementation of __reduce__ and __reduce_ex__ now
Serhiy Storchaka [Thu, 12 Nov 2015 09:59:03 +0000 (11:59 +0200)]
Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now
rejects builtin types with not defined __new__.

9 years agoIssue #22995: Backported additional tests for non-pickleable types.
Serhiy Storchaka [Thu, 12 Nov 2015 09:36:42 +0000 (11:36 +0200)]
Issue #22995: Backported additional tests for non-pickleable types.

9 years agoalways set OP_NO_SSLv3 by default (closes #25530)
Benjamin Peterson [Thu, 12 Nov 2015 06:38:41 +0000 (22:38 -0800)]
always set OP_NO_SSLv3 by default (closes #25530)

9 years agofix memory leak in _get_crl_dp (closes #25569)
Benjamin Peterson [Thu, 12 Nov 2015 06:07:38 +0000 (22:07 -0800)]
fix memory leak in _get_crl_dp (closes #25569)

Patch started by Stéphane Wirtel.

9 years agoRewrite re.VERBOSE section.
Zachary Ware [Thu, 12 Nov 2015 05:32:14 +0000 (23:32 -0600)]
Rewrite re.VERBOSE section.

It now has slightly better rationale and a less awkward wording in the
explanation.

Inspired by a report of a neither/or conflict by 'animalize' on docs@.

9 years agoIssue #7759: Fixed the mhlib module on filesystems that doesn't support
Serhiy Storchaka [Wed, 11 Nov 2015 15:33:12 +0000 (17:33 +0200)]
Issue #7759: Fixed the mhlib module on filesystems that doesn't support
link counting for directories.

9 years agoIssue #6598: Avoid clock wrapping around in test_make_msgid_collisions.
Serhiy Storchaka [Tue, 10 Nov 2015 17:53:37 +0000 (19:53 +0200)]
Issue #6598: Avoid clock wrapping around in test_make_msgid_collisions.
Use time.time instead of time.clock.

9 years agoIssue #25263: Fixed the tkinter.test.test_tkinter.test_font.FontTest test
Serhiy Storchaka [Tue, 10 Nov 2015 13:32:54 +0000 (15:32 +0200)]
Issue #25263: Fixed the tkinter.test.test_tkinter.test_font.FontTest test
failure when the test is ran the second time.

The root attribute was set in parent class in setUpClass and then
overridded in child class in tearDownClass.

9 years agoAdded missed periods at the ends of sentences in Misc/NEWS.
Serhiy Storchaka [Mon, 9 Nov 2015 22:31:41 +0000 (00:31 +0200)]
Added missed periods at the ends of sentences in Misc/NEWS.

9 years agoIssue #25582: Fixed 100 MB memory leak in test_ctypes.
Serhiy Storchaka [Mon, 9 Nov 2015 20:31:10 +0000 (22:31 +0200)]
Issue #25582: Fixed 100 MB memory leak in test_ctypes.

9 years agoIssue #7267: format(int, 'c') now raises OverflowError when the argument is not
Victor Stinner [Mon, 9 Nov 2015 11:21:09 +0000 (12:21 +0100)]
Issue #7267: format(int, 'c') now raises OverflowError when the argument is not
in range(0, 256).

9 years agoIssue #892902: Disable newly added tests in test_xpickle.
Serhiy Storchaka [Sat, 7 Nov 2015 18:04:46 +0000 (20:04 +0200)]
Issue #892902: Disable newly added tests in test_xpickle.

9 years agoIssue #892902: Fixed pickling recursive objects.
Serhiy Storchaka [Sat, 7 Nov 2015 09:15:32 +0000 (11:15 +0200)]
Issue #892902: Fixed pickling recursive objects.

9 years agoIssue #18010: Fix pydoc GUI search to handle package exceptions
Martin Panter [Sat, 7 Nov 2015 05:41:47 +0000 (05:41 +0000)]
Issue #18010: Fix pydoc GUI search to handle package exceptions

9 years agoIssue #12612: Add some Valgrind suppressions for 64-bit machines.
doko@ubuntu.com [Thu, 5 Nov 2015 19:41:57 +0000 (20:41 +0100)]
Issue #12612: Add some Valgrind suppressions for 64-bit machines.

9 years agoFix use of default reST role
Zachary Ware [Thu, 5 Nov 2015 16:28:18 +0000 (10:28 -0600)]
Fix use of default reST role

9 years agoremove trailing ws
Benjamin Peterson [Wed, 4 Nov 2015 06:43:31 +0000 (22:43 -0800)]
remove trailing ws

9 years agomerge heads
Benjamin Peterson [Wed, 4 Nov 2015 06:42:08 +0000 (22:42 -0800)]
merge heads

9 years agolink to modern PUG url
Benjamin Peterson [Wed, 4 Nov 2015 06:42:02 +0000 (22:42 -0800)]
link to modern PUG url

9 years agoIssue #25523: Backported a-to-an corrections.
Serhiy Storchaka [Mon, 2 Nov 2015 13:06:09 +0000 (15:06 +0200)]
Issue #25523: Backported a-to-an corrections.

9 years agoIssue #25519: Mark difflib.ndiff as a functions where not already.
Terry Jan Reedy [Fri, 30 Oct 2015 23:41:10 +0000 (19:41 -0400)]
Issue #25519: Mark difflib.ndiff as a functions where not already.

9 years agoIssue #25505: Remove unused buggy method.
Terry Jan Reedy [Fri, 30 Oct 2015 23:25:28 +0000 (19:25 -0400)]
Issue #25505: Remove unused buggy method.

9 years agoIssue #25507: move test-specific imports to test function (idlelib.IOBinding).
Terry Jan Reedy [Fri, 30 Oct 2015 06:47:01 +0000 (02:47 -0400)]
Issue #25507: move test-specific imports to test function (idlelib.IOBinding).

9 years agofix usage of undefined name (#25504)
Benjamin Peterson [Fri, 30 Oct 2015 04:10:57 +0000 (21:10 -0700)]
fix usage of undefined name (#25504)

9 years agoalways use os.urandom for the uuid4 algorithm (closes #25515)
Benjamin Peterson [Fri, 30 Oct 2015 03:38:04 +0000 (20:38 -0700)]
always use os.urandom for the uuid4 algorithm (closes #25515)

9 years agoIssue #21827: Fixed textwrap.dedent() for the case when largest common
Serhiy Storchaka [Wed, 28 Oct 2015 19:39:36 +0000 (21:39 +0200)]
Issue #21827: Fixed textwrap.dedent() for the case when largest common
whitespace is a substring of smallest leading whitespace.
Based on patch by Robert Li.

9 years agoIssue #25432: Explain isinstance behaviour when type is a tuple.
Terry Jan Reedy [Wed, 28 Oct 2015 07:14:46 +0000 (03:14 -0400)]
Issue #25432: Explain isinstance behaviour when type is a tuple.

9 years agoDisplay IDLE warning as a warning rather than as an error.
Terry Jan Reedy [Tue, 27 Oct 2015 07:37:55 +0000 (03:37 -0400)]
Display IDLE warning as a warning rather than as an error.
Clarify message and expected action for beginners.

9 years agoIssue21160: Correct comments in nturl2path. Patch by Jurko Gospodnetić.
Serhiy Storchaka [Sat, 24 Oct 2015 14:39:36 +0000 (17:39 +0300)]
Issue21160: Correct comments in nturl2path.  Patch by Jurko Gospodnetić.

9 years agoIssue #25461: Rephrase os.walk() doc
Victor Stinner [Fri, 23 Oct 2015 10:42:39 +0000 (12:42 +0200)]
Issue #25461: Rephrase os.walk() doc

Patch written by Bernt Røskar Brenna.

9 years agoIssue21709: Call os.path.normcase when setting _srcfile for compatibility
Gregory P. Smith [Thu, 22 Oct 2015 20:12:20 +0000 (13:12 -0700)]
Issue21709: Call os.path.normcase when setting _srcfile for compatibility
with what findCaller() does when running on non-POSIX platforms.

(alternatively: the normcase calls in both places could be eliminated, but that
touches more code and that refactoring hasn't even been done in 3 yet...)

9 years agoIssue #21709: Fix the logging module to not depend upon __file__ being set
Gregory P. Smith [Thu, 22 Oct 2015 20:09:50 +0000 (13:09 -0700)]
Issue #21709: Fix the logging module to not depend upon __file__ being set
properly to get the filename of its caller from the stack.  This allows it
to work if run in a frozen or embedded environment where the module's
.__file__ attribute does not match its code object's .co_filename.

This same much simpler always correct approach has already been deployed and
used widely in Python 3.4 per the issue referenced above.

9 years agoIssue #24782: Limit width of canvas and hence IDLE settings dialog.
Terry Jan Reedy [Thu, 22 Oct 2015 07:27:27 +0000 (03:27 -0400)]
Issue #24782: Limit width of canvas and hence IDLE settings dialog.

9 years agoIssue #24782: Don't try to run now-removed extension dialog test.
Terry Jan Reedy [Tue, 20 Oct 2015 06:15:23 +0000 (02:15 -0400)]
Issue #24782: Don't try to run now-removed extension dialog test.

9 years agoAdded entry to logging cookbook.
Vinay Sajip [Sat, 17 Oct 2015 12:55:19 +0000 (13:55 +0100)]
Added entry to logging cookbook.

9 years agoIssue #25188: Clean up code to pass the --pgo flag to subprocesses
Brett Cannon [Fri, 16 Oct 2015 19:30:20 +0000 (12:30 -0700)]
Issue #25188: Clean up code to pass the --pgo flag to subprocesses
when running the test suite.

Patch by Arfrever Frehtes Taifersar Arahesis.

9 years agoIssue #24782: whitespace
Terry Jan Reedy [Wed, 14 Oct 2015 02:08:45 +0000 (22:08 -0400)]
Issue #24782: whitespace

9 years agoIssue #24782: Finish converting the Configure Extension dialog into a new
Terry Jan Reedy [Wed, 14 Oct 2015 02:03:44 +0000 (22:03 -0400)]
Issue #24782: Finish converting the Configure Extension dialog into a new
tab in the IDLE Preferences dialog.  Code patch by Mark Roseman.

9 years agoactually link to the version attributes documentation
Benjamin Peterson [Mon, 12 Oct 2015 06:03:22 +0000 (23:03 -0700)]
actually link to the version attributes documentation

9 years agoIssue #22726: Re-activate config dialog help button with some content about
Terry Jan Reedy [Mon, 12 Oct 2015 02:07:25 +0000 (22:07 -0400)]
Issue #22726: Re-activate config dialog help button with some content about
the other buttons and the new IDLE Dark theme.

9 years agodon't mention Python 2.2 (closes #25375)
Benjamin Peterson [Sun, 11 Oct 2015 06:23:55 +0000 (23:23 -0700)]
don't mention Python 2.2 (closes #25375)

9 years agouse the with statement for locking the internal condition (closes #25362)
Benjamin Peterson [Sun, 11 Oct 2015 02:34:46 +0000 (19:34 -0700)]
use the with statement for locking the internal condition (closes #25362)

Patch by Nir Soffer.

9 years agoIssue #25161: Add full stops in documentation; patch by Takase Arihiro
Martin Panter [Sat, 10 Oct 2015 10:52:35 +0000 (10:52 +0000)]
Issue #25161: Add full stops in documentation; patch by Takase Arihiro

9 years agoIssue #22413: Document newline effect on StringIO initializer and getvalue
Martin Panter [Sat, 10 Oct 2015 02:52:30 +0000 (02:52 +0000)]
Issue #22413: Document newline effect on StringIO initializer and getvalue

Also add to comment in the C code.

9 years agoIssue #24848: Fixed yet one bug in UTF-7 decoder. Testing for BASE64 character
Serhiy Storchaka [Sat, 10 Oct 2015 06:33:11 +0000 (09:33 +0300)]
Issue #24848: Fixed yet one bug in UTF-7 decoder.  Testing for BASE64 character
was locale depending.

9 years agoCloses #25344: Added cookbook recipe to show buffering of logging events.
Vinay Sajip [Fri, 9 Oct 2015 23:49:10 +0000 (00:49 +0100)]
Closes #25344: Added cookbook recipe to show buffering of logging events.

9 years agoIssue #25326: Improve an obscure error message.
Raymond Hettinger [Fri, 9 Oct 2015 01:14:15 +0000 (21:14 -0400)]
Issue #25326:  Improve an obscure error message.

9 years agoIssue #25286: Accidentally dropped "the"
Martin Panter [Wed, 7 Oct 2015 10:39:13 +0000 (10:39 +0000)]
Issue #25286: Accidentally dropped "the"

9 years agoIssue #25286: Dictionary views are not sequences
Martin Panter [Wed, 7 Oct 2015 10:19:39 +0000 (10:19 +0000)]
Issue #25286: Dictionary views are not sequences

Also change glossary heading from "view" to "dictionary view". Patch by Akira
Li.

9 years agoBackport early-out 91259f061cfb to reduce the cost of bb1a2944bcb6
Raymond Hettinger [Wed, 7 Oct 2015 03:12:02 +0000 (23:12 -0400)]
Backport early-out 91259f061cfb to reduce the cost of bb1a2944bcb6

9 years agomerge heads
Benjamin Peterson [Wed, 7 Oct 2015 02:37:15 +0000 (19:37 -0700)]
merge heads

9 years agoprevent unacceptable bases from becoming bases through multiple inheritance (#24806)
Benjamin Peterson [Wed, 7 Oct 2015 02:36:54 +0000 (19:36 -0700)]
prevent unacceptable bases from becoming bases through multiple inheritance (#24806)

9 years agoIssue #25317: Converted doctests in test_tokenize to unittests.
Serhiy Storchaka [Tue, 6 Oct 2015 15:13:38 +0000 (18:13 +0300)]
Issue #25317: Converted doctests in test_tokenize to unittests.

9 years agoreinitialize an Event's Condition with a regular lock (closes #25319)
Benjamin Peterson [Tue, 6 Oct 2015 04:56:22 +0000 (21:56 -0700)]
reinitialize an Event's Condition with a regular lock (closes #25319)

9 years agoMake error report in test_codecs more informative.
Serhiy Storchaka [Sun, 4 Oct 2015 10:52:40 +0000 (13:52 +0300)]
Make error report in test_codecs more informative.

9 years agoIssue #24820: Update IDLE NEWS items.
Terry Jan Reedy [Sun, 4 Oct 2015 05:14:45 +0000 (01:14 -0400)]
Issue #24820: Update IDLE NEWS items.

9 years agoIssue #24820: Add 'IDLE Dark' text color theme, warning, and solution.
Terry Jan Reedy [Sun, 4 Oct 2015 04:30:59 +0000 (00:30 -0400)]
Issue #24820: Add 'IDLE Dark' text color theme, warning, and solution.

9 years agoIssue #16701: Document += and *= for mutable sequences
Martin Panter [Sat, 3 Oct 2015 07:37:22 +0000 (07:37 +0000)]
Issue #16701: Document += and *= for mutable sequences

9 years agoIssue #24657: Prevent CGIRequestHandler from collapsing the URL query
Martin Panter [Sat, 3 Oct 2015 05:55:46 +0000 (05:55 +0000)]
Issue #24657: Prevent CGIRequestHandler from collapsing the URL query

Initial patch from Xiang Zhang. Also fix out-of-date _url_collapse_path() doc
string.

9 years agoIssue #25232: Fix CGIRequestHandler's splitting of URL query
Martin Panter [Sat, 3 Oct 2015 05:38:07 +0000 (05:38 +0000)]
Issue #25232: Fix CGIRequestHandler's splitting of URL query

Patch from Xiang Zhang.

9 years agoIssue #25224: README.txt is now an idlelib index for IDLE developers and
Terry Jan Reedy [Sat, 3 Oct 2015 03:22:54 +0000 (23:22 -0400)]
Issue #25224: README.txt is now an idlelib index for IDLE developers and
curious users.  The previous user content is now in the IDLE doc and is
redundant.  IDLE now means 'Integrated Development and Learning Environment'.

9 years agoIssue #24820: Users can now set breakpoint colors in Settings ->
Terry Jan Reedy [Sat, 3 Oct 2015 02:12:09 +0000 (22:12 -0400)]
Issue #24820: Users can now set breakpoint colors in Settings ->
Custom Highlighting.  Original patch by Mark Roseman.

9 years agoFix indentation
Brett Cannon [Fri, 2 Oct 2015 23:22:32 +0000 (16:22 -0700)]
Fix indentation

9 years agoIssue #25188: Add -P/--pgo to test.regrtest for PGO building.
Brett Cannon [Fri, 2 Oct 2015 23:21:34 +0000 (16:21 -0700)]
Issue #25188: Add -P/--pgo to test.regrtest for PGO building.

Initial patch by Alecsandru Patrascu of Intel.

9 years agoRemoved the "b" string prefix to make test_xpickle compatible with Python 2.5.
Serhiy Storchaka [Fri, 2 Oct 2015 17:23:46 +0000 (20:23 +0300)]
Removed the "b" string prefix to make test_xpickle compatible with Python 2.5.

9 years agoIssue #25290: Fix typo in csv.reader() docstring
Berker Peksag [Fri, 2 Oct 2015 16:30:21 +0000 (19:30 +0300)]
Issue #25290: Fix typo in csv.reader() docstring

Patch by Johannes Niediek.

9 years agoIssue #24848: Fixed bugs in UTF-7 decoding of misformed data:
Serhiy Storchaka [Fri, 2 Oct 2015 10:14:53 +0000 (13:14 +0300)]
Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:

1. Non-ASCII bytes were accepted after shift sequence.
2. A low surrogate could be emitted in case of error in high surrogate.

9 years agoIssue #25003: os.urandom() doesn't use getentropy() on Solaris because
Victor Stinner [Thu, 1 Oct 2015 07:57:26 +0000 (09:57 +0200)]
Issue #25003: os.urandom() doesn't use getentropy() on Solaris because
getentropy() is blocking, whereas os.urandom() should not block. getentropy()
is supported since Solaris 11.3.

9 years agoIssue #22958: Constructor and update method of weakref.WeakValueDictionary
Serhiy Storchaka [Tue, 29 Sep 2015 20:51:27 +0000 (23:51 +0300)]
Issue #22958: Constructor and update method of weakref.WeakValueDictionary
now accept the self keyword argument.

9 years agoIssue #22609: Constructor and the update method of collections.UserDict now
Serhiy Storchaka [Tue, 29 Sep 2015 20:33:03 +0000 (23:33 +0300)]
Issue #22609: Constructor and the update method of collections.UserDict now
accept the self keyword argument.

9 years agoBackported additional unpickling tests from 3.x.
Serhiy Storchaka [Tue, 29 Sep 2015 12:51:40 +0000 (15:51 +0300)]
Backported additional unpickling tests from 3.x.

9 years agoMoved unpickling tests with prepickled data to separate class.
Serhiy Storchaka [Tue, 29 Sep 2015 12:36:28 +0000 (15:36 +0300)]
Moved unpickling tests with prepickled data to separate class.

9 years agoIssue #24028: Add subsection about Idle calltips.
Terry Jan Reedy [Tue, 29 Sep 2015 05:55:50 +0000 (01:55 -0400)]
Issue #24028: Add subsection about Idle calltips.

9 years agoRemove indent in news item. Error when building 3.x docs.
Terry Jan Reedy [Tue, 29 Sep 2015 05:00:25 +0000 (01:00 -0400)]
Remove indent in news item. Error when building 3.x docs.

9 years agoAdd recent IDLE NEWS items. Move Build sectios down.
Terry Jan Reedy [Tue, 29 Sep 2015 03:38:46 +0000 (23:38 -0400)]
Add recent IDLE NEWS items.  Move Build sectios down.

9 years agoIssue #25249: Remove unneeded mkstemp helper in test_subprocess
Berker Peksag [Mon, 28 Sep 2015 12:37:57 +0000 (15:37 +0300)]
Issue #25249: Remove unneeded mkstemp helper in test_subprocess

The helper was added in 76641824cf05 11 years ago and it can be
removed now since all supported Python versions have tempfile.mkstemp().

Patch by Nir Soffer.

9 years agoIssue #24972: New option is only valid in tk 8.5+.
Terry Jan Reedy [Mon, 28 Sep 2015 08:52:44 +0000 (04:52 -0400)]
Issue #24972: New option is only valid in tk 8.5+.

9 years agoIssue #24972: Inactive selection background now matches active selection
Terry Jan Reedy [Mon, 28 Sep 2015 02:46:12 +0000 (22:46 -0400)]
Issue #24972: Inactive selection background now matches active selection
background, as selected by user, on all systems.  This also fixes a problem
with found items not highlighted on Windows.  Initial patch by Mark Roseman.
Fix replaces workaround with obscure but proper configuration option.

9 years agoIssue #25203: Failed readline.set_completer_delims() no longer left the
Serhiy Storchaka [Sun, 27 Sep 2015 19:34:59 +0000 (22:34 +0300)]
Issue #25203: Failed readline.set_completer_delims() no longer left the
 module in inconsistent state.

9 years agofix spacing
Benjamin Peterson [Sun, 27 Sep 2015 09:13:40 +0000 (02:13 -0700)]
fix spacing