summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-09-07 05:27:42 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-09-07 05:27:42 (GMT)
commitf35bd306ffa2c05a1297435bb15cd3b4d47b3977 (patch)
tree8a909b9eb6a5325a5ebbcbdc5858dd798d78db0d /Misc
parentda19767b86dcee5810ad8c77a05811be041d7c89 (diff)
parentc1635e497d060bae076127152801af2b2ec552ff (diff)
downloadcpython-f35bd306ffa2c05a1297435bb15cd3b4d47b3977.zip
cpython-f35bd306ffa2c05a1297435bb15cd3b4d47b3977.tar.gz
cpython-f35bd306ffa2c05a1297435bb15cd3b4d47b3977.tar.bz2
Merge from 3.5.0 branch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS14
1 files changed, 10 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 64c9af7..8a09be7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1,4 +1,4 @@
-+++++++++++
++++++++++++
Python News
+++++++++++
@@ -88,6 +88,9 @@ Release date: 2015-09-06
Core and Builtins
-----------------
+- Issue #24305: Prevent import subsystem stack frames from being counted
+ by the warnings.warn(stacklevel=) parameter.
+
- Issue #24912: Prevent __class__ assignment to immutable built-in objects.
- Issue #24975: Fix AST compilation for PEP 448 syntax.
@@ -95,9 +98,15 @@ Core and Builtins
Library
-------
+- Issue #24917: time_strftime() buffer over-read.
- Issue #23144: Make sure that HTMLParser.feed() returns all the data, even
when convert_charrefs is True.
+- Issue #24748: To resolve a compatibility problem found with py2exe and
+ pywin32, imp.load_dynamic() once again ignores previously loaded modules
+ to support Python modules replacing themselves with extension modules.
+ Patch by Petr Viktorin.
+
- Issue #24635: Fixed a bug in typing.py where isinstance([], typing.Iterable)
would return True once, then False on subsequent calls.
@@ -386,9 +395,6 @@ Library
- Issue #14373: C implementation of functools.lru_cache() now can be used with
methods.
-- Issue #8232: webbrowser support incomplete on Windows. Patch by Brandon
- Milam
-
- Issue #24347: Set KeyError if PyDict_GetItemWithError returns NULL.
- Issue #24348: Drop superfluous incref/decref.