summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-08-19 08:04:07 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-08-19 08:04:07 (GMT)
commit3f015a64b83fd243c165147d225cb37dc7e3e645 (patch)
tree051733732e931ef146f3da1b4509d87382d90cff /Misc
parent2a400fd62a292e43df75ca687c4d350e9a98af44 (diff)
downloadcpython-3f015a64b83fd243c165147d225cb37dc7e3e645.zip
cpython-3f015a64b83fd243c165147d225cb37dc7e3e645.tar.gz
cpython-3f015a64b83fd243c165147d225cb37dc7e3e645.tar.bz2
Issue #27157: Make only type() itself accept the one-argument form
Patch by Eryk Sun and Emanuel Barry.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bcc8087..1eadf9f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 1
Core and Builtins
-----------------
+- Issue #27157: Make only type() itself accept the one-argument form.
+ Patch by Eryk Sun and Emanuel Barry.
+
- Issue #27558: Fix a SystemError in the implementation of "raise" statement.
In a brand new thread, raise a RuntimeError since there is no active
exception to reraise. Patch written by Xiang Zhang.