summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorƁukasz Langa <lukasz@langa.pl>2017-08-01 23:47:50 (GMT)
committerGitHub <noreply@github.com>2017-08-01 23:47:50 (GMT)
commit47320a652e872003f3dd3a9db4243067b09dd316 (patch)
tree9025b17f8070268f054ce16ad433cf083bd53fcb /Misc
parent9d8e6ec8d2f7d6abd6c526adabacc13fd1ab4ee1 (diff)
downloadcpython-47320a652e872003f3dd3a9db4243067b09dd316.zip
cpython-47320a652e872003f3dd3a9db4243067b09dd316.tar.gz
cpython-47320a652e872003f3dd3a9db4243067b09dd316.tar.bz2
Document Path.is_mount(), update Misc/ACKS and Misc/NEWS (#2980)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2017-08-01-15-56-50.bpo-30897.OuT1-Y.rst3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index e0640c1..f1f6c14 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -886,6 +886,7 @@ Inyeol Lee
James Lee
John J. Lee
Thomas Lee
+Cooper Ry Lees
Tennessee Leeuwenburg
Luc Lefebvre
Pierre Paul Lefebvre
diff --git a/Misc/NEWS.d/next/Library/2017-08-01-15-56-50.bpo-30897.OuT1-Y.rst b/Misc/NEWS.d/next/Library/2017-08-01-15-56-50.bpo-30897.OuT1-Y.rst
new file mode 100644
index 0000000..41a75b8
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-08-01-15-56-50.bpo-30897.OuT1-Y.rst
@@ -0,0 +1,3 @@
+``pathlib.Path`` objects now include an ``is_mount()`` method (only
+implemented on POSIX). This is similar to ``os.path.ismount(p)``. Patch by
+Cooper Ry Lees.