diff options
author | Dong-hee Na <donghee.na@python.org> | 2020-11-25 13:17:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-25 13:17:30 (GMT) |
commit | be319c0c108e308fb7ed6ec9522e969fdffd1253 (patch) | |
tree | 374255533809ed68cbd908a433c2a8550aa15c78 /Misc/NEWS.d | |
parent | b9127dd6eedd693cfd716a4444648864e2e00186 (diff) | |
download | cpython-be319c0c108e308fb7ed6ec9522e969fdffd1253.zip cpython-be319c0c108e308fb7ed6ec9522e969fdffd1253.tar.gz cpython-be319c0c108e308fb7ed6ec9522e969fdffd1253.tar.bz2 |
bpo-42299: Remove formatter module (GH-23476)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-11-23-23-42-08.bpo-42299.Fdn4Wf.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-11-23-23-42-08.bpo-42299.Fdn4Wf.rst b/Misc/NEWS.d/next/Library/2020-11-23-23-42-08.bpo-42299.Fdn4Wf.rst new file mode 100644 index 0000000..a8e156c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-11-23-23-42-08.bpo-42299.Fdn4Wf.rst @@ -0,0 +1,5 @@ +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. Patch by Dong-hee Na and and Terry J. Reedy. |