summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-08 10:18:47 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-08 10:18:47 (GMT)
commit5346b68524746c4ed3b09b75746e69569100b995 (patch)
tree1184aa0d1aa967e84e4418f6972036e2085aabbe /Misc
parent319d58d599cdc75b27b5518b2c4ab9021655c6f0 (diff)
parentb0f9fa7a03ed56c2155fb251fbd423637dc86536 (diff)
downloadcpython-5346b68524746c4ed3b09b75746e69569100b995.zip
cpython-5346b68524746c4ed3b09b75746e69569100b995.tar.gz
cpython-5346b68524746c4ed3b09b75746e69569100b995.tar.bz2
Add NEWS entry for #17502: Process DEFAULT values in mock side_effect that returns iterator.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS21
1 files changed, 16 insertions, 5 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 087fb20..50bd50e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,9 +25,16 @@ Core and Builtins
- Issue #17522: Add the PyGILState_Check() API.
+- Issue #17327: Add PyDict_SetDefault.
+
+Library
+-------
+
- Issue #16475: Support object instancing, recursion and interned strings
in marshal
+- Issue #17502: Process DEFAULT values in mock side_effect that returns iterator.
+
- Use the HTTPS PyPI url for upload, overriding any plain HTTP URL in pypirc.
- Issue #16795: On the ast.arguments object, unify vararg with varargannotation
@@ -40,20 +47,24 @@ Core and Builtins
- Issue #17117: Import and @importlib.util.set_loader now set __loader__ when
it has a value of None or the attribute doesn't exist.
-- Issue #17327: Add PyDict_SetDefault.
-
- Issue #17032: The "global" in the "NameError: global name 'x' is not defined"
error message has been removed. Patch by Ram Rachum.
+
+What's New in Python 3.3.1 release candidate 1?
+===============================================
+
+*Release date: 24-Mar-2013*
+
+Core and Builtins
+-----------------
+
- Issue #17328: Fix possible refleak in dict.setdefault.
- Issue #17223: array module: Fix a crasher when converting an array containing
invalid characters (outside range [U+0000; U+10ffff]) to Unicode:
repr(array), str(array) and array.tounicode(). Patch written by Manuel Jacob.
-- Issue #17223: Fix PyUnicode_FromUnicode() for string of 1 character outside
- the range U+0000-U+10ffff.
-
- Issue #17275: Corrected class name in init error messages of the C version of
BufferedWriter and BufferedRandom.