summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-09-09 15:54:34 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2019-09-09 15:54:34 (GMT)
commit370138ba9c29595df773cc057d17ea26fb6f21bd (patch)
tree2912100b1674bf408ad0628baf4383c7bd4557ea /Misc
parent9488a5289de2ceecdfd2098cd70d215f96c4e745 (diff)
downloadcpython-370138ba9c29595df773cc057d17ea26fb6f21bd.zip
cpython-370138ba9c29595df773cc057d17ea26fb6f21bd.tar.gz
cpython-370138ba9c29595df773cc057d17ea26fb6f21bd.tar.bz2
bpo-35803: Document and test dir=PathLike for tempfile (GH-11644)
Co-Authored-By: Ammar Askar <ammar_askar@hotmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Documentation/2019-01-21-14-30-59.bpo-35803.yae6Lq.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2019-01-21-14-30-59.bpo-35803.yae6Lq.rst b/Misc/NEWS.d/next/Documentation/2019-01-21-14-30-59.bpo-35803.yae6Lq.rst
new file mode 100644
index 0000000..b839456
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2019-01-21-14-30-59.bpo-35803.yae6Lq.rst
@@ -0,0 +1,2 @@
+Document and test that ``tempfile`` functions may accept a
+:term:`path-like object` for the ``dir`` argument. Patch by Anthony Sottile.