From: INADA Naoki Date: Sat, 28 Jul 2018 12:47:31 +0000 (+0900) Subject: bpo-33666: Add what's new entry for os.errno removal (GH-#8497) X-Git-Tag: v3.8.0a1~1294 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d2dafa249c7fb34f3d24e7a77d1bea02907d92b;p=python bpo-33666: Add what's new entry for os.errno removal (GH-#8497) Co-authored-by: Petr Viktorin --- diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index ac13890d97..cb4865e484 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 --------------------