summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-01 17:12:33 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-01 17:12:33 (GMT)
commitea6839835557784433669a43c763c296ce9afd21 (patch)
treee2fe412eb90b05e915de41ae6c6aecbab2e6870d /Misc
parent5c4725e5bc4c25ff3f9771bf8985bcb52fea23e7 (diff)
downloadcpython-ea6839835557784433669a43c763c296ce9afd21.zip
cpython-ea6839835557784433669a43c763c296ce9afd21.tar.gz
cpython-ea6839835557784433669a43c763c296ce9afd21.tar.bz2
Closes #20218: Added convenience methods read_text/write_text and read_bytes/
write_bytes to pathlib.Path objects. Thanks to Christopher Welborn and Ram Rachum for original patches.
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 12d34ef..b26316f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -156,6 +156,9 @@ Core and Builtins
Library
-------
+- Issue #20218: Added convenience methods read_text/write_text and read_bytes/
+ write_bytes to pathlib.Path objects.
+
- Issue #22437: Number of capturing groups in regular expression is no longer
limited by 100.