diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-08-04 08:30:57 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-08-04 08:30:57 (GMT) |
commit | f3fd13b5dd7d3762d86c041bda9bcd65afa62c0a (patch) | |
tree | 14c62b8e23ff26d67ec481a4b56cf51e40b0d0d9 /Doc | |
parent | b90f417d696c667017f3fa80d37861a69acee24f (diff) | |
download | cpython-f3fd13b5dd7d3762d86c041bda9bcd65afa62c0a.zip cpython-f3fd13b5dd7d3762d86c041bda9bcd65afa62c0a.tar.gz cpython-f3fd13b5dd7d3762d86c041bda9bcd65afa62c0a.tar.bz2 |
Complete What's New in Python 3.4
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 2575170..43f10ce 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -245,10 +245,13 @@ by Claudiu Popa in :issue:`17616`.) stat ---- -The stat module is now backed by a C implementation in :mod:`_stat`. A C +The :mod:`stat` module is now backed by a C implementation in :mod:`_stat`. A C implementation is required as most of the values aren't standardized and platform-dependent. (Contributed by Christian Heimes in :issue:`11016`.) +The module supports new file types: door, event port and whiteout. + + Optimizations ============= @@ -271,7 +274,9 @@ Deprecated Unsupported Operating Systems ----------------------------- -* None yet. +* OS/2 +* VMS (issue 16136) +* Windows 2000 Deprecated Python modules, functions and methods |