diff options
author | Batuhan Taskaya <batuhanosmantaskaya@gmail.com> | 2020-05-31 22:01:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-31 22:01:50 (GMT) |
commit | cf88871d6a9c12e7b7e5f4d65abc2ec6e2fe952e (patch) | |
tree | 9937063a3701e7287a1c879e470c28064ca5ac24 /Doc | |
parent | b7d79b4f36787874128c439d38397fe95c48429b (diff) | |
download | cpython-cf88871d6a9c12e7b7e5f4d65abc2ec6e2fe952e.zip cpython-cf88871d6a9c12e7b7e5f4d65abc2ec6e2fe952e.tar.gz cpython-cf88871d6a9c12e7b7e5f4d65abc2ec6e2fe952e.tar.bz2 |
bpo-40759: Deprecate the symbol module (GH-20364)
Automerge-Triggered-By: @pablogsal
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/symbol.rst | 5 | ||||
-rw-r--r-- | Doc/whatsnew/3.9.rst | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/Doc/library/symbol.rst b/Doc/library/symbol.rst index 4499693..d56600a 100644 --- a/Doc/library/symbol.rst +++ b/Doc/library/symbol.rst @@ -17,6 +17,11 @@ the definitions of the names in the context of the language grammar. The specific numeric values which the names map to may change between Python versions. +.. warning:: + + The symbol module is deprecated and will be removed in future versions of + Python. + This module also provides one additional data object: diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 7f81074..6ace7a4 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -692,9 +692,10 @@ Deprecated Python versions it will raise a :exc:`TypeError` for all floats. (Contributed by Serhiy Storchaka in :issue:`37315`.) -* The :mod:`parser` module is deprecated and will be removed in future versions - of Python. For the majority of use cases, users can leverage the Abstract Syntax - Tree (AST) generation and compilation stage, using the :mod:`ast` module. +* The :mod:`parser` and :mod:`symbol` modules are deprecated and will be + removed in future versions of Python. For the majority of use cases, + users can leverage the Abstract Syntax Tree (AST) generation and compilation + stage, using the :mod:`ast` module. * Using :data:`NotImplemented` in a boolean context has been deprecated, as it is almost exclusively the result of incorrect rich comparator |