summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-09-22 16:41:20 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-09-22 16:41:20 (GMT)
commit63dc548109c4f5e17280382831b93fb8e9da9207 (patch)
tree84948c6fe6dbb4db020fed4458b5aef220b42adb /Misc/NEWS
parent5ed548715a2115ec73fce92074ac97ed832d2e19 (diff)
downloadcpython-63dc548109c4f5e17280382831b93fb8e9da9207.zip
cpython-63dc548109c4f5e17280382831b93fb8e9da9207.tar.gz
cpython-63dc548109c4f5e17280382831b93fb8e9da9207.tar.bz2
Issue #28086: Single var-positional argument of tuple subtype was passed
unscathed to the C-defined function. Now it is converted to exact tuple.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index aca0ba0..2f531a8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 2
Core and Builtins
-----------------
+- Issue #28086: Single var-positional argument of tuple subtype was passed
+ unscathed to the C-defined function. Now it is converted to exact tuple.
+
- Issue #28214: Now __set_name__ is looked up on the class instead of the
instance.