Skip to content

bpo-42299: Remove formatter module #23476

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

Merged
merged 5 commits into from
Nov 25, 2020
Merged
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
351 changes: 0 additions & 351 deletions Doc/library/formatter.rst

This file was deleted.

1 change: 0 additions & 1 deletion Doc/library/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ the `Python Package Index <https://pypi.org>`_.
custominterp.rst
modules.rst
language.rst
misc.rst
windows.rst
unix.rst
superseded.rst
Expand Down
13 changes: 0 additions & 13 deletions Doc/library/misc.rst

This file was deleted.

6 changes: 6 additions & 0 deletions Doc/whatsnew/3.10.rst
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,12 @@ Removed
:c:func:`PyParser_SimpleParseFileFlags` and :c:func:`PyNode_Compile`
that were deprecated in 3.9 due to the switch to the new PEG parser.

* Removed the ``formatter`` module, which was deprecated in Python 3.4.
It is somewhat obsolete, little used, and not tested. It was originally
scheduled to be removed in Python 3.6, but such removals were delayed until
after Python 2.7 EOL. Existing users should copy whatever classes they use
into their code.
(Contributed by Dong-hee Na and Terry J. Reedy in :issue:`42299`.)

Porting to Python 3.10
======================
Expand Down
Loading