diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-22 16:41:20 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-22 16:41:20 (GMT) |
commit | 63dc548109c4f5e17280382831b93fb8e9da9207 (patch) | |
tree | 84948c6fe6dbb4db020fed4458b5aef220b42adb /Misc/NEWS | |
parent | 5ed548715a2115ec73fce92074ac97ed832d2e19 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |