]> granicus.if.org Git - python/log
python
9 years ago#25991: fix readline example to limit history size. Patch by Daniel Dye.
Ezio Melotti [Mon, 11 Jan 2016 21:30:15 +0000 (23:30 +0200)]
#25991: fix readline example to limit history size.  Patch by Daniel Dye.

9 years agoComment out another test that won't pass after reverting the picklability
Barry Warsaw [Mon, 11 Jan 2016 19:49:34 +0000 (14:49 -0500)]
Comment out another test that won't pass after reverting the picklability
regression.

9 years agoComment out two tests that won't pass now after reverting the typeobject.c
Barry Warsaw [Mon, 11 Jan 2016 19:44:59 +0000 (14:44 -0500)]
Comment out two tests that won't pass now after reverting the typeobject.c
change.  Also, as per further discussion, we'll just remove the regressing
code in typeobject.c

9 years agoIssue #22995: [UPDATE] Comment out the one of the pickleability tests in
Barry Warsaw [Mon, 11 Jan 2016 18:52:23 +0000 (13:52 -0500)]
Issue #22995: [UPDATE] Comment out the one of the pickleability tests in
_PyObject_GetState() due to regressions observed in Cython-based projects.

9 years agodelete old crypto prose (closes #26066)
Benjamin Peterson [Sun, 10 Jan 2016 07:55:47 +0000 (23:55 -0800)]
delete old crypto prose (closes #26066)

9 years agoIssue23675 - A tiny clarification in the MRO glossary term.
Senthil Kumaran [Sun, 10 Jan 2016 06:36:13 +0000 (22:36 -0800)]
Issue23675 - A tiny clarification in the MRO glossary term.

9 years agoIssue20969 - Set the Epub Author and Epub Publisher in Python docs.
Senthil Kumaran [Fri, 8 Jan 2016 09:05:57 +0000 (01:05 -0800)]
Issue20969 - Set the Epub Author and Epub Publisher in Python docs.

9 years agofix typo in unittest docs (closes #26046)
Benjamin Peterson [Fri, 8 Jan 2016 06:01:26 +0000 (22:01 -0800)]
fix typo in unittest docs (closes #26046)

Patch from Upendra Kumar.

9 years agoIssue #5501: Clarify that invoking freeze_support() on non-Windows platforms has...
Berker Peksag [Thu, 7 Jan 2016 16:49:53 +0000 (18:49 +0200)]
Issue #5501: Clarify that invoking freeze_support() on non-Windows platforms has no effect

Patch by Davin Potts and Camilla Montonen.

9 years agoFix issue18918 : Attach the pydoc documentation for 'FILES' topic.
Senthil Kumaran [Wed, 6 Jan 2016 11:54:18 +0000 (03:54 -0800)]
Fix issue18918 : Attach the pydoc documentation for 'FILES' topic.

Also rebuilt the pydoc_data with this change.

9 years agoIssue #6500: Reverting fbea8ff8db5e since it broke tests
Berker Peksag [Wed, 6 Jan 2016 01:08:12 +0000 (03:08 +0200)]
Issue #6500: Reverting fbea8ff8db5e since it broke tests

9 years agoIssue #6500: Fix "maximum recursion depth exceeded" error caused by Request.__getattr__()
Berker Peksag [Wed, 6 Jan 2016 00:04:52 +0000 (02:04 +0200)]
Issue #6500: Fix "maximum recursion depth exceeded" error caused by Request.__getattr__()

9 years agoIssue24733 - Remove unreachable code in traceback.c
Senthil Kumaran [Tue, 5 Jan 2016 06:40:39 +0000 (22:40 -0800)]
Issue24733 - Remove unreachable code in traceback.c

9 years agoBackport documentation improvement.
Senthil Kumaran [Mon, 4 Jan 2016 02:07:06 +0000 (18:07 -0800)]
Backport documentation improvement.

Issue24898 - Improve str.find documentation.

Simplify str.find explaination as per Georg Brandl's suggestion.

9 years agoBackport doc improvements for Issue21221 - Explain the usage of tm_isdst
Senthil Kumaran [Sun, 3 Jan 2016 09:03:40 +0000 (01:03 -0800)]
Backport doc improvements for Issue21221 - Explain the usage of tm_isdst
attribute of mktime, with valid values and meaning.

Patch contributed by Andrew Scheller.

9 years agoUpdate copyrights for 2016.
Ned Deily [Fri, 1 Jan 2016 22:45:31 +0000 (17:45 -0500)]
Update copyrights for 2016.

9 years agoFix grammar.
Zachary Ware [Fri, 1 Jan 2016 18:22:16 +0000 (12:22 -0600)]
Fix grammar.

Reported by Anatoly Techtonik on docs@

9 years agoremove some copyright notices supserseded by the toplevel ones
Benjamin Peterson [Fri, 1 Jan 2016 17:53:47 +0000 (11:53 -0600)]
remove some copyright notices supserseded by the toplevel ones

9 years agoreflow
Benjamin Peterson [Fri, 1 Jan 2016 17:12:44 +0000 (11:12 -0600)]
reflow

9 years ago2016 will be another year of writing copyrighted code
Benjamin Peterson [Fri, 1 Jan 2016 16:23:45 +0000 (10:23 -0600)]
2016 will be another year of writing copyrighted code

9 years agoIssue #25961: Fixed compilation error and a leak in type constructor.
Serhiy Storchaka [Thu, 31 Dec 2015 10:03:14 +0000 (12:03 +0200)]
Issue #25961: Fixed compilation error and a leak in type constructor.

9 years agoIssue #25961: Disallowed null characters in the type name.
Serhiy Storchaka [Wed, 30 Dec 2015 19:39:21 +0000 (21:39 +0200)]
Issue #25961: Disallowed null characters in the type name.

9 years agoMake catched exceptions more specific and correct a comment.
Serhiy Storchaka [Wed, 30 Dec 2015 18:59:32 +0000 (20:59 +0200)]
Make catched exceptions more specific and correct a comment.

9 years agoIssue #22995: Instances of extension types with a state that aren't
Serhiy Storchaka [Wed, 30 Dec 2015 18:43:29 +0000 (20:43 +0200)]
Issue #22995: Instances of extension types with a state that aren't
subclasses of list or dict and haven't implemented any pickle-related
methods (__reduce__, __reduce_ex__, __getnewargs__, __getnewargs_ex__,
or __getstate__), can no longer be pickled.  Including memoryview.

9 years agoIssue #20440: More use of Py_SETREF.
Serhiy Storchaka [Sun, 27 Dec 2015 13:41:58 +0000 (15:41 +0200)]
Issue #20440: More use of Py_SETREF.
This patch is manually crafted and contains changes that couldn't be handled
automatically.

9 years agoIssue #20440: Applied yet one patch for using Py_SETREF.
Serhiy Storchaka [Sun, 27 Dec 2015 10:38:48 +0000 (12:38 +0200)]
Issue #20440: Applied yet one patch for using Py_SETREF.
The patch is automatically generated, it replaces the code that uses Py_CLEAR.

9 years agoCloses #25664: handled logger names in Unicode.
Vinay Sajip [Sat, 26 Dec 2015 12:21:47 +0000 (12:21 +0000)]
Closes #25664: handled logger names in Unicode.

9 years agoIssue #24103: Fixed possible use after free in ElementTree.iterparse().
Serhiy Storchaka [Thu, 24 Dec 2015 09:51:24 +0000 (11:51 +0200)]
Issue #24103: Fixed possible use after free in ElementTree.iterparse().

9 years agoIssue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka [Thu, 24 Dec 2015 08:35:35 +0000 (10:35 +0200)]
Issue #20440: Massive replacing unsafe attribute setting code with special
macro Py_SETREF.

9 years agoIssue #25827: Add support for ICC to configure
Zachary Ware [Mon, 21 Dec 2015 17:43:03 +0000 (11:43 -0600)]
Issue #25827: Add support for ICC to configure

9 years agoFixed sizeof tests for dict and type (they were passed by accident).
Serhiy Storchaka [Sun, 20 Dec 2015 09:40:00 +0000 (11:40 +0200)]
Fixed sizeof tests for dict and type (they were passed by accident).
Added tests for dict views.

9 years agoCreate a file in SizeofTest only if needed.
Serhiy Storchaka [Sun, 20 Dec 2015 07:36:55 +0000 (09:36 +0200)]
Create a file in SizeofTest only if needed.

9 years agoUse correct PyGC_Head size in tests for issue #25421.
Serhiy Storchaka [Sat, 19 Dec 2015 20:49:29 +0000 (22:49 +0200)]
Use correct PyGC_Head size in tests for issue #25421.

9 years agoIssue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
Serhiy Storchaka [Sat, 19 Dec 2015 18:07:48 +0000 (20:07 +0200)]
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
This allows sys.getsize() to work correctly with their subclasses with
__slots__ defined.

9 years agoIssue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION MARK.
Terry Jan Reedy [Fri, 18 Dec 2015 20:46:52 +0000 (15:46 -0500)]
Issue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION MARK.

9 years agoIssue #25899: Fixed typo in .bzrignore.
Serhiy Storchaka [Fri, 18 Dec 2015 11:12:33 +0000 (13:12 +0200)]
Issue #25899: Fixed typo in .bzrignore.

9 years agoIssue #22088: Port base64 character ignoring doc and test from 857d9fe60169
Martin Panter [Mon, 14 Dec 2015 03:41:59 +0000 (03:41 +0000)]
Issue #22088: Port base64 character ignoring doc and test from 857d9fe60169

9 years agoIssue #20837: Base-64 alphabet clarification from revision 1853679c6f71
Martin Panter [Mon, 14 Dec 2015 02:54:40 +0000 (02:54 +0000)]
Issue #20837: Base-64 alphabet clarification from revision 1853679c6f71

9 years ago#25495: Clarify b2a_base64 documentation vis 57 bytes.
R David Murray [Sun, 13 Dec 2015 23:04:14 +0000 (18:04 -0500)]
#25495: Clarify b2a_base64 documentation vis 57 bytes.

9 years agoFixes issue #20954: _args_from_interpreter_flags used by multiprocessing
Gregory P. Smith [Sun, 13 Dec 2015 21:57:50 +0000 (13:57 -0800)]
Fixes issue #20954: _args_from_interpreter_flags used by multiprocessing
and some tests no longer behaves incorrectly in the presence of the
PYTHONHASHSEED environment variable.

9 years agoIssue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory
Victor Stinner [Sun, 13 Dec 2015 20:25:42 +0000 (21:25 +0100)]
Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) directory

9 years agoIssue #25696: Fix installation of Python on UNIX with make -j9.
Victor Stinner [Sun, 13 Dec 2015 20:19:28 +0000 (21:19 +0100)]
Issue #25696: Fix installation of Python on UNIX with make -j9.

9 years agoIssue #25809: Skip testing platform-dependent French thousands separator
Martin Panter [Sat, 12 Dec 2015 06:53:34 +0000 (06:53 +0000)]
Issue #25809: Skip testing platform-dependent French thousands separator

9 years agoFixed possible leaks in ElementTree parser.
Serhiy Storchaka [Wed, 9 Dec 2015 17:44:30 +0000 (19:44 +0200)]
Fixed possible leaks in ElementTree parser.

9 years agoClarify that only *documentation* bugs should go to docs@python.org
Zachary Ware [Wed, 9 Dec 2015 07:53:44 +0000 (01:53 -0600)]
Clarify that only *documentation* bugs should go to docs@python.org

9 years agoIssue25814: Propagate all errors from custom XML parser handlers
Serhiy Storchaka [Sun, 6 Dec 2015 21:51:53 +0000 (23:51 +0200)]
Issue25814: Propagate all errors from custom XML parser handlers
in ElementTree.iterparse().

9 years agomerge heads
Ned Deily [Sun, 6 Dec 2015 05:00:57 +0000 (00:00 -0500)]
merge heads

9 years agoremove pointless keys() call
Benjamin Peterson [Sun, 6 Dec 2015 04:52:43 +0000 (20:52 -0800)]
remove pointless keys() call

9 years agoIssue #25798: Update OS X 10.5+ 32-bit-only installer to build
Ned Deily [Sun, 6 Dec 2015 04:47:34 +0000 (23:47 -0500)]
Issue #25798: Update OS X 10.5+ 32-bit-only installer to build
and link with OpenSSL 1.0.2e.

9 years agooff to 2.7.12 we go
Benjamin Peterson [Sat, 5 Dec 2015 19:46:21 +0000 (11:46 -0800)]
off to 2.7.12 we go

9 years agomerge 2.7.11 branch
Benjamin Peterson [Sat, 5 Dec 2015 19:45:48 +0000 (11:45 -0800)]
merge 2.7.11 branch

9 years agoAdded tag v2.7.11 for changeset 6d1b6a68f775
Benjamin Peterson [Sat, 5 Dec 2015 19:45:22 +0000 (11:45 -0800)]
Added tag v2.7.11 for changeset 6d1b6a68f775

9 years ago2.7.11 final v2.7.11
Benjamin Peterson [Sat, 5 Dec 2015 19:45:17 +0000 (11:45 -0800)]
2.7.11 final

9 years agomake consulting save_modules O(1) rather than O(n)
Benjamin Peterson [Sat, 5 Dec 2015 08:29:56 +0000 (00:29 -0800)]
make consulting save_modules O(1) rather than O(n)

9 years agomerge 2.7.11 branch
Benjamin Peterson [Sat, 5 Dec 2015 08:18:11 +0000 (00:18 -0800)]
merge 2.7.11 branch

9 years agoadd CVE and issue number
Benjamin Peterson [Sat, 5 Dec 2015 08:17:57 +0000 (00:17 -0800)]
add CVE and issue number

9 years agoIssue #14285: Do not catch ImportError from __init__.py in runpy
Martin Panter [Thu, 3 Dec 2015 01:23:10 +0000 (01:23 +0000)]
Issue #14285: Do not catch ImportError from __init__.py in runpy

Initialize package before calling get_loader() for __main__, so that we do
not incorrectly handle ImportError from __init__.py. When runpy is used from
the Python CLI, use an internal exception rather than ImportError, to avoid
catching an unexpected ImportError.

Also simplify message formatting: str() is redundant with %s.

Also fix test_dash_m_error_code_is_one() in test_cmd_line_script, which was
failing because the test package was not in the current directlry, rather
the desired ValueError.

9 years agoIssue #6478: _strptime's regexp cache now is reset after changing timezone
Serhiy Storchaka [Thu, 3 Dec 2015 20:20:45 +0000 (22:20 +0200)]
Issue #6478: _strptime's regexp cache now is reset after changing timezone
with time.tzset().

9 years agoIssue #19543: Added Py3k warning for decoding unicode.
Serhiy Storchaka [Thu, 3 Dec 2015 18:47:48 +0000 (20:47 +0200)]
Issue #19543: Added Py3k warning for decoding unicode.

9 years agoFix test_doctest in verbose mode
Victor Stinner [Wed, 2 Dec 2015 13:39:37 +0000 (14:39 +0100)]
Fix test_doctest in verbose mode

9 years agoFixed reference leak when read truncated pickle.
Serhiy Storchaka [Mon, 30 Nov 2015 22:32:49 +0000 (00:32 +0200)]
Fixed reference leak when read truncated pickle.

9 years agoIssue #25718: Fixed copying object with state with boolean value is false.
Serhiy Storchaka [Mon, 30 Nov 2015 15:20:02 +0000 (17:20 +0200)]
Issue #25718: Fixed copying object with state with boolean value is false.

9 years agoFixed yet one syntax error in test_xpickle in Python 2.5.
Serhiy Storchaka [Sun, 29 Nov 2015 18:18:27 +0000 (20:18 +0200)]
Fixed yet one syntax error in test_xpickle in Python 2.5.

9 years agoFixed Py3k warnings in tests for issue #24731.
Serhiy Storchaka [Sun, 29 Nov 2015 18:13:56 +0000 (20:13 +0200)]
Fixed Py3k warnings in tests for issue #24731.

9 years agoTrying to fix test_xpickle with python 2.4 and 2.5.
Serhiy Storchaka [Sun, 29 Nov 2015 17:20:11 +0000 (19:20 +0200)]
Trying to fix test_xpickle with python 2.4 and 2.5.

9 years agoIssue #25742: Try to fix test_locale on Windows
Victor Stinner [Sun, 29 Nov 2015 15:33:18 +0000 (16:33 +0100)]
Issue #25742: Try to fix test_locale on Windows

9 years agoGot rid of "with" for compatibility test_xpickle with Python 2.5.
Serhiy Storchaka [Sun, 29 Nov 2015 14:13:51 +0000 (16:13 +0200)]
Got rid of "with" for compatibility test_xpickle with Python 2.5.

9 years agoIssue #25761: Added more test cases for testing unpickling broken data.
Serhiy Storchaka [Sun, 29 Nov 2015 11:12:40 +0000 (13:12 +0200)]
Issue #25761: Added more test cases for testing unpickling broken data.
Output raised exception at verbose level 2 (-vv).

9 years agoCloses #25742: locale.setlocale() now accepts a Unicode string for its second
Victor Stinner [Fri, 27 Nov 2015 22:54:36 +0000 (23:54 +0100)]
Closes #25742: locale.setlocale() now accepts a Unicode string for its second
parameter.

9 years agoIssue #23914: Fix test_xpickle with python 2.4 and 2.5
Zachary Ware [Fri, 27 Nov 2015 07:21:51 +0000 (01:21 -0600)]
Issue #23914: Fix test_xpickle with python 2.4 and 2.5

Remove 'b' prefix from strings, remove unused import.

9 years agoIssue #10131: Fixed deep copying of minidom documents. Based on patch
Serhiy Storchaka [Thu, 26 Nov 2015 21:48:30 +0000 (23:48 +0200)]
Issue #10131: Fixed deep copying of minidom documents.  Based on patch
by Marian Ganisin.

9 years agoIssue #25622: Rename to PythonValuesTestCase and enable for non-Windows
Martin Panter [Thu, 26 Nov 2015 02:36:26 +0000 (02:36 +0000)]
Issue #25622: Rename to PythonValuesTestCase and enable for non-Windows

9 years agoFixed compilation error introduced in 745fd5550bc0.
Serhiy Storchaka [Thu, 26 Nov 2015 09:21:47 +0000 (11:21 +0200)]
Fixed compilation error introduced in 745fd5550bc0.

9 years agoIssue #19687: Fixed possible integer overflows in ElementTree.
Serhiy Storchaka [Wed, 25 Nov 2015 18:12:58 +0000 (20:12 +0200)]
Issue #19687: Fixed possible integer overflows in ElementTree.
Based on patch by Christian Heimes.

9 years agoIssue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
Serhiy Storchaka [Wed, 25 Nov 2015 16:35:33 +0000 (18:35 +0200)]
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
__getattr__.  Original patch by Antoine Pitrou.

9 years agoIssue #25616: Tests for OrderedDict are extracted from test_collections
Serhiy Storchaka [Wed, 25 Nov 2015 15:19:27 +0000 (17:19 +0200)]
Issue #25616: Tests for OrderedDict are extracted from test_collections
into separate file test_ordered_dict.

9 years agoIssue #25703: Skip test_43581 if one of stdout or stderr is redirected.
Serhiy Storchaka [Wed, 25 Nov 2015 14:20:04 +0000 (16:20 +0200)]
Issue #25703: Skip test_43581 if one of stdout or stderr is redirected.

9 years agoIssue #25697: Fixed rough alphabetical order in Misc/ACKS.
Serhiy Storchaka [Wed, 25 Nov 2015 14:13:56 +0000 (16:13 +0200)]
Issue #25697: Fixed rough alphabetical order in Misc/ACKS.

9 years agoIssue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka [Wed, 25 Nov 2015 13:55:54 +0000 (15:55 +0200)]
Issue #24731: Fixed crash on converting objects with special methods
__str__, __trunc__, and __float__ returning instances of subclasses of
str, long, and float to subclasses of str, long, and float correspondingly.

9 years agoIssue #25725: Fixed a reference leak in cPickle.loads() when unpickling
Serhiy Storchaka [Wed, 25 Nov 2015 13:07:49 +0000 (15:07 +0200)]
Issue #25725: Fixed a reference leak in cPickle.loads() when unpickling
invalid data including tuple instructions.

9 years agoIssue #25508: Clarify documentation on LogRecord args attribute.
Vinay Sajip [Tue, 24 Nov 2015 23:18:30 +0000 (23:18 +0000)]
Issue #25508: Clarify documentation on LogRecord args attribute.

9 years agoFix non-ascii character
Raymond Hettinger [Tue, 24 Nov 2015 05:00:45 +0000 (21:00 -0800)]
Fix non-ascii character

9 years agoAdd a missing docstring
Raymond Hettinger [Tue, 24 Nov 2015 04:47:05 +0000 (20:47 -0800)]
Add a missing docstring

9 years agoIssue #25663: Make rlcompleter avoid duplicate global names
Martin Panter [Mon, 23 Nov 2015 23:50:26 +0000 (23:50 +0000)]
Issue #25663: Make rlcompleter avoid duplicate global names

9 years agoIssue #25688: Fixed file leak in ElementTree.iterparse() raising an error.
Serhiy Storchaka [Mon, 23 Nov 2015 13:46:36 +0000 (15:46 +0200)]
Issue #25688: Fixed file leak in ElementTree.iterparse() raising an error.

9 years agoIssue #23914: Fixed SystemError raised by unpickler on broken pickle data.
Serhiy Storchaka [Mon, 23 Nov 2015 13:20:43 +0000 (15:20 +0200)]
Issue #23914: Fixed SystemError raised by unpickler on broken pickle data.

9 years agoIssue #25691: Added tests on deleting cElementTree.Element attributes.
Serhiy Storchaka [Mon, 23 Nov 2015 06:50:20 +0000 (08:50 +0200)]
Issue #25691: Added tests on deleting cElementTree.Element attributes.

9 years agorm duplicate entry
Benjamin Peterson [Mon, 23 Nov 2015 03:05:29 +0000 (19:05 -0800)]
rm duplicate entry

9 years agomerge 2.7.11 release branch
Benjamin Peterson [Mon, 23 Nov 2015 03:05:14 +0000 (19:05 -0800)]
merge 2.7.11 release branch

9 years agoIssue #25624: ZipFile now always writes a ZIP_STORED header for directory entries...
Benjamin Peterson [Mon, 23 Nov 2015 03:04:56 +0000 (19:04 -0800)]
Issue #25624: ZipFile now always writes a ZIP_STORED header for directory entries. Patch by Dingyuan Wang.

9 years agoIssue #25624: ZipFile now always writes a ZIP_STORED header for directory
Serhiy Storchaka [Sun, 22 Nov 2015 12:56:22 +0000 (14:56 +0200)]
Issue #25624: ZipFile now always writes a ZIP_STORED header for directory
entries.  Patch by Dingyuan Wang.

9 years agoIssue #19687: Fixed memory leak on failed Element slice assignment.
Serhiy Storchaka [Sun, 22 Nov 2015 10:31:11 +0000 (12:31 +0200)]
Issue #19687: Fixed memory leak on failed Element slice assignment.

9 years agonews section for 2.7.12
Benjamin Peterson [Sun, 22 Nov 2015 02:39:07 +0000 (18:39 -0800)]
news section for 2.7.12

9 years agopost rc1 updates
Benjamin Peterson [Sun, 22 Nov 2015 02:38:18 +0000 (18:38 -0800)]
post rc1 updates

9 years agoAdded tag v2.7.11rc1 for changeset 82dd9545bd93
Benjamin Peterson [Sat, 21 Nov 2015 21:38:43 +0000 (13:38 -0800)]
Added tag v2.7.11rc1 for changeset 82dd9545bd93

9 years agobump to 2.7.11rc1 v2.7.11rc1
Benjamin Peterson [Sat, 21 Nov 2015 21:38:35 +0000 (13:38 -0800)]
bump to 2.7.11rc1

9 years agoupdate pydoc-topics
Benjamin Peterson [Sat, 21 Nov 2015 21:35:41 +0000 (13:35 -0800)]
update pydoc-topics

9 years agoUpdate idlelib/NEWS.txt.
Terry Jan Reedy [Sat, 21 Nov 2015 18:31:00 +0000 (13:31 -0500)]
Update idlelib/NEWS.txt.

9 years agoMisc/NEWS entries for IDLE.
Terry Jan Reedy [Sat, 21 Nov 2015 18:18:50 +0000 (13:18 -0500)]
Misc/NEWS entries for IDLE.

9 years agoIssue #25686: test_shutil no longer uses the distutils package for running
Serhiy Storchaka [Sat, 21 Nov 2015 12:11:57 +0000 (14:11 +0200)]
Issue #25686: test_shutil no longer uses the distutils package for running
external archivers.