diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-10-24 09:02:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-24 09:02:00 (GMT) |
commit | 01b5aab7bfb11ee5476ef52d24495598cbe7c99a (patch) | |
tree | d21899c9bf7a80014b9e14bd27c0cf88ed6da290 /Doc/whatsnew | |
parent | 87d332dcdbffe8ff60d99f74b1ad241c0967b055 (diff) | |
download | cpython-01b5aab7bfb11ee5476ef52d24495598cbe7c99a.zip cpython-01b5aab7bfb11ee5476ef52d24495598cbe7c99a.tar.gz cpython-01b5aab7bfb11ee5476ef52d24495598cbe7c99a.tar.bz2 |
bpo-31827: Remove os.stat_float_times() (GH-4061)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 11b99e2..5bff3a4 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -507,6 +507,10 @@ Removed API and Feature Removals ------------------------ +* The ``os.stat_float_times()`` function has been removed. It was introduced in + Python 2.3 for backward compatibility with Python 2.2, and was deprecated + since Python 3.1. + * Unknown escapes consisting of ``'\'`` and an ASCII letter in replacement templates for :func:`re.sub` were deprecated in Python 3.5, and will now cause an error. |