summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-04-29 17:34:40 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2012-04-29 17:34:40 (GMT)
commitea7e9f9a83a88325e599d0a7b31122e50495a5aa (patch)
tree733daf808a853c76e9b588af692e987492ec981a /Misc
parent99a56386f1eee02c1cb5b47d7a2c8bbfd2f1eb24 (diff)
downloadcpython-ea7e9f9a83a88325e599d0a7b31122e50495a5aa.zip
cpython-ea7e9f9a83a88325e599d0a7b31122e50495a5aa.tar.gz
cpython-ea7e9f9a83a88325e599d0a7b31122e50495a5aa.tar.bz2
Issue #9154: Fix parser module to understand function annotations.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2d50fe1..ebf0cfa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,8 @@ Core and Builtins
Library
-------
+- Issue #9154: Fix parser module to understand function annotations.
+
- Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a
test class that doesn't inherit from TestCase (i.e. a mixin).