From: Yury Selivanov Date: Thu, 28 May 2015 21:10:29 +0000 (-0400) Subject: docs/whatsnew/3.6: Mention that 'async' and 'await' will be keywords in 3.7 X-Git-Tag: v3.5.0b2~13^2~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a219110e6b9972a96e78e389e243c5cecfcfccc;p=thirdparty%2FPython%2Fcpython.git docs/whatsnew/3.6: Mention that 'async' and 'await' will be keywords in 3.7 --- diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index 7453bf41b7a6..375d94e55189 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -113,6 +113,14 @@ Build and C API Changes Deprecated ========== +New Keywords +------------ + +``async`` and ``await`` are not recommended to be used as variable, class or +function names. Introduced by :pep:`492` in Python 3.5, they will become +proper keywords in Python 3.7. + + Deprecated Python modules, functions and methods ------------------------------------------------