diff options
author | Guido van Rossum <guido@dropbox.com> | 2016-05-19 20:11:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2016-05-19 20:11:17 (GMT) |
commit | 03e6061956d10586b70eb78f3d76ce0952ee5bd8 (patch) | |
tree | 4e8bf012754eb339d45cd9d0d14b26c6c4a5b360 /Misc | |
parent | 7fa6378747dfffb983f14b9f6e760ab65a112fe3 (diff) | |
parent | 387e6e38175b853741c4f35e08791f0990bc0845 (diff) | |
download | cpython-03e6061956d10586b70eb78f3d76ce0952ee5bd8.zip cpython-03e6061956d10586b70eb78f3d76ce0952ee5bd8.tar.gz cpython-03e6061956d10586b70eb78f3d76ce0952ee5bd8.tar.bz2 |
Back out pathlib.Path.path attr. (Merge 3.5->3.6)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -682,12 +682,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(). |