summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-10-04 15:38:59 (GMT)
committerBrett Cannon <brett@python.org>2013-10-04 15:38:59 (GMT)
commit1448ecf470013cee63c0682f615c5256928dc6b0 (patch)
treebd8650fbd71fe3aee320e8be61f87b78893c3142 /Doc/whatsnew
parentcc5d49e3daeeef7809dcc93a22f0e5185961185f (diff)
downloadcpython-1448ecf470013cee63c0682f615c5256928dc6b0.zip
cpython-1448ecf470013cee63c0682f615c5256928dc6b0.tar.gz
cpython-1448ecf470013cee63c0682f615c5256928dc6b0.tar.bz2
Issue #18716: Deprecate the formatter module
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.4.rst9
1 files changed, 6 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 2e3cab5..81c2d87 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -516,6 +516,9 @@ Deprecated Python modules, functions and methods
* The :mod:`imp` module is pending deprecation. To keep compatibility with
Python 2/3 code bases, the module's removal is currently not scheduled.
+* The :mod:`formatter` module is pending deprecation and is slated for removal
+ in Python 3.6.
+
Deprecated functions and types of the C API
-------------------------------------------
@@ -554,9 +557,9 @@ that may require changes to your code.
* Import now resets relevant attributes (e.g. ``__name__``, ``__loader__``,
``__package__``, ``__file__``, ``__cached__``) unconditionally when reloading.
-* Frozen packages no longer set ``__path__`` to a list containg the package name
- but an empty list instead. Determing if a module is a package should be done
- using ``hasattr(module, '__path__')``.
+* Frozen packages no longer set ``__path__`` to a list containing the package
+ name but an empty list instead. Determing if a module is a package should be
+ done using ``hasattr(module, '__path__')``.
* :c:func:`PyErr_SetImportError` now sets :exc:`TypeError` when its **msg**
argument is not set. Previously only ``NULL`` was returned with no exception