Skip to content

bpo-41234: Remove symbol.sym_name #21381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Doc/library/language.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ These modules include:
parser.rst
ast.rst
symtable.rst
symbol.rst
token.rst
keyword.rst
tokenize.rst
Expand Down
32 changes: 0 additions & 32 deletions Doc/library/symbol.rst

This file was deleted.

3 changes: 3 additions & 0 deletions Doc/whatsnew/3.10.rst
Original file line number Diff line number Diff line change
Expand Up @@ -249,3 +249,6 @@ Removed
* Removed ``PyUnicode_AsUnicodeCopy()``. Please use :c:func:`PyUnicode_AsUCS4Copy` or
:c:func:`PyUnicode_AsWideCharString`
(Contributed by Inada Naoki in :issue:`41103`.)

* Removed :module:symbol.
(Contributed by Lysandros Nikolaou in :issue:`40939` and Joannah Nanjekye in :issue:`41234`.)
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Remove docs for the deprecated and removed ``symbol.sym_name``.
(Patch by Joannah Nanjekye)