diff options
author | Guido van Rossum <guido@python.org> | 2016-05-19 20:10:20 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-05-19 20:10:20 (GMT) |
commit | 387e6e38175b853741c4f35e08791f0990bc0845 (patch) | |
tree | d869c7273239c3991c3e5a54ae6966462260ac3c /Misc/NEWS | |
parent | d8bf09c6cd1137b148a06a0283c060e3e1e6cc46 (diff) | |
parent | 3d4d01f614d894327bbdc1feadebd50b2d3621ff (diff) | |
download | cpython-387e6e38175b853741c4f35e08791f0990bc0845.zip cpython-387e6e38175b853741c4f35e08791f0990bc0845.tar.gz cpython-387e6e38175b853741c4f35e08791f0990bc0845.tar.bz2 |
Back out pathlib.Path.path attr. (Merge 3.4->3.5)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -370,12 +370,6 @@ Library - Issue #25672: In the ssl module, enable the SSL_MODE_RELEASE_BUFFERS mode option if it is safe to do so. -- Issue #22570: Add 'path' attribute to pathlib.Path objects, - returning the same as str(), to make it more similar to DirEntry. - Library code can now write getattr(p, 'path', p) to get the path as - a string from a Path, a DirEntry, or a plain string. This is - essentially a small one-off protocol. - - Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob(). |