summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-03-24 09:27:50 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-03-24 09:27:50 (GMT)
commitf329878e74e1eefffad5c70942bc6cd2c27440d3 (patch)
tree398feb83dc1f8a2a8e15a4cd356748fe86219639 /Misc
parent551350a79f1a85d78467740b348fa1cdeb7519e4 (diff)
downloadcpython-f329878e74e1eefffad5c70942bc6cd2c27440d3.zip
cpython-f329878e74e1eefffad5c70942bc6cd2c27440d3.tar.gz
cpython-f329878e74e1eefffad5c70942bc6cd2c27440d3.tar.bz2
Issue #23753: Python doesn't support anymore platforms without stat() or
fstat(), these functions are always required. Remove HAVE_STAT and HAVE_FSTAT defines, and stop supporting DONT_HAVE_STAT and DONT_HAVE_FSTAT.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 34508e9..5cc5537 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: 2015-03-28
Core and Builtins
-----------------
+- Issue #23753: Python doesn't support anymore platforms without stat() or
+ fstat(), these functions are always required.
+
- Issue #23681: The -b option now affects comparisons of bytes with int.
- Issue #23632: Memoryviews now allow tuple indexing (including for
@@ -29,7 +32,7 @@ Library
- Issue #23657: Avoid explicit checks for str in zipapp, adding support
for pathlib.Path objects as arguments.
-
+
- Issue #23688: Added support of arbitrary bytes-like objects and avoided
unnecessary copying of memoryview in gzip.GzipFile.write().
Original patch by Wolfgang Maier.