[Python-checkins] cpython (merge 3.5 -> default): whatsnew/3.5,3.6: Mention that 'async' is a bad name for modules

yury.selivanov python-checkins at python.org
Mon Aug 3 20:57:33 CEST 2015


https://hg.python.org/cpython/rev/5a13a3f3bb3b
changeset:   97220:5a13a3f3bb3b
parent:      97218:62235755609f
parent:      97219:0f2fc3e7816d
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Mon Aug 03 14:57:21 2015 -0400
summary:
  whatsnew/3.5,3.6: Mention that 'async' is a bad name for modules

files:
  Doc/whatsnew/3.5.rst |  6 +++---
  Doc/whatsnew/3.6.rst |  6 +++---
  2 files changed, 6 insertions(+), 6 deletions(-)


diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -947,9 +947,9 @@
 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.
+``async`` and ``await`` are not recommended to be used as variable, class,
+function or module names.  Introduced by :pep:`492` in Python 3.5, they will
+become proper keywords in Python 3.7.
 
 
 Unsupported Operating Systems
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -116,9 +116,9 @@
 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.
+``async`` and ``await`` are not recommended to be used as variable, class,
+function or module names.  Introduced by :pep:`492` in Python 3.5, they will
+become proper keywords in Python 3.7.
 
 
 Deprecated Python modules, functions and methods

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list