diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-03 18:57:21 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-03 18:57:21 (GMT) |
commit | 62f27b5b98725d7b576d9dda784fcbe15bd17063 (patch) | |
tree | 33b20b72288b192c387a028975968ddd5ee9c155 /Doc | |
parent | 9ea5199fe966d4287ee3b1845e9b5b58a683b41c (diff) | |
parent | 13b74aef6249c65e2b085a581ae9dea8c88ad8d5 (diff) | |
download | cpython-62f27b5b98725d7b576d9dda784fcbe15bd17063.zip cpython-62f27b5b98725d7b576d9dda784fcbe15bd17063.tar.gz cpython-62f27b5b98725d7b576d9dda784fcbe15bd17063.tar.bz2 |
whatsnew/3.5,3.6: Mention that 'async' is a bad name for modules
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 6 | ||||
-rw-r--r-- | 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 index dba3ea0..e7992d9 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -947,9 +947,9 @@ 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. +``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 index 3f83f19..4e686ad 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -116,9 +116,9 @@ 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. +``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 |