summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-07-07 01:31:12 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-07-07 01:31:12 (GMT)
commit7084e736db318ba83a879e2e93e7c76264e48dbf (patch)
tree9cbd1206a5f55d5d23a50ff7b481db36b5a7e01c /Misc
parent7bc5fb6916b59e9d6e491c8519e5affa98b8aa6c (diff)
downloadcpython-7084e736db318ba83a879e2e93e7c76264e48dbf.zip
cpython-7084e736db318ba83a879e2e93e7c76264e48dbf.tar.gz
cpython-7084e736db318ba83a879e2e93e7c76264e48dbf.tar.bz2
Issue #21714: Disallow the construction of invalid paths using Path.with_name(). Original patch by Antony Lee.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 97ffbfc..a8e6fd4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #21714: Disallow the construction of invalid paths using
+ Path.with_name(). Original patch by Antony Lee.
+
- Issue #21897: Fix a crash with the f_locals attribute with closure
variables when frame.clear() has been called.