diff options
author | Christian Heimes <christian@cheimes.de> | 2013-06-22 19:05:02 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-06-22 19:05:02 (GMT) |
commit | c77d9f38c2e1435c2d20af353abbb624f2767ba6 (patch) | |
tree | 5ab3e9d1bc2d9cf07263e404992d5def15d56c3b /Doc/whatsnew/3.4.rst | |
parent | 6ce8d17d02bf1e39265d6c77fe5a851cb38cefd6 (diff) | |
download | cpython-c77d9f38c2e1435c2d20af353abbb624f2767ba6.zip cpython-c77d9f38c2e1435c2d20af353abbb624f2767ba6.tar.gz cpython-c77d9f38c2e1435c2d20af353abbb624f2767ba6.tar.bz2 |
Issue #11016: Add C implementation of the stat module as _stat
Diffstat (limited to 'Doc/whatsnew/3.4.rst')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 16b03b3..b003c4e 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -182,7 +182,6 @@ functools New :func:`functools.singledispatch` decorator: see the :pep:`443`. - smtplib ------- @@ -213,6 +212,12 @@ wave The :meth:`~wave.getparams` method now returns a namedtuple rather than a plain tuple. (Contributed by Claudiu Popa in :issue:`17487`.) +stat +--- + +The 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`.) Optimizations ============= |