diff options
author | Guido van Rossum <guido@python.org> | 2016-05-19 20:00:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-05-19 20:00:21 (GMT) |
commit | 3d4d01f614d894327bbdc1feadebd50b2d3621ff (patch) | |
tree | fda99c3acd7a179cd4f492f765ccfeaa0fea9cd7 /Misc | |
parent | 2a86122759f629a26dbfbc8258fc82c56c613429 (diff) | |
download | cpython-3d4d01f614d894327bbdc1feadebd50b2d3621ff.zip cpython-3d4d01f614d894327bbdc1feadebd50b2d3621ff.tar.gz cpython-3d4d01f614d894327bbdc1feadebd50b2d3621ff.tar.bz2 |
Back out 7e9605697dfc, 2e3c31ab586a, 759b2cecc289.
These added a path attribute to pathlib.Path objects, and docs.
Instead, we're going to use PEP 519.
(Starting in the 3.4 branch and merging forward from there since that's what I did originally.)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -21,12 +21,6 @@ Library - Issue #25939: On Windows open the cert store readonly in ssl.enum_certificates. -- 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(). |