summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2018-07-28 12:47:31 (GMT)
committerPetr Viktorin <encukou@gmail.com>2018-07-28 12:47:31 (GMT)
commit1d2dafa249c7fb34f3d24e7a77d1bea02907d92b (patch)
tree223ad88f9a82c1e05681c592c19e34c4dc228a1e /Doc/whatsnew
parent95dfb9c3aefdc981d23af700b753a6c97159ccad (diff)
downloadcpython-1d2dafa249c7fb34f3d24e7a77d1bea02907d92b.zip
cpython-1d2dafa249c7fb34f3d24e7a77d1bea02907d92b.tar.gz
cpython-1d2dafa249c7fb34f3d24e7a77d1bea02907d92b.tar.bz2
bpo-33666: Add what's new entry for os.errno removal (GH-#8497)
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.7.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index ac13890..cb4865e 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -2406,6 +2406,12 @@ Changes in the Python API
dictionary are now being implicitly converted to strings.
(Contributed by James Tocknell in :issue:`23835`.)
+* Several undocumented internal imports were removed.
+ One example is that ``os.errno`` is no longer available; use ``import errno``
+ directly instead.
+ Note that such undocumented internal imports may be removed any time without
+ notice, even in micro version releases.
+
Changes in the C API
--------------------