summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGéry Ogam <gery.ogam@gmail.com>2019-09-11 13:03:46 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2019-09-11 13:03:46 (GMT)
commit781266ebb60e7ac781a3e07030d92275721ff3cf (patch)
tree8a39e79a64aa7421f2fc0f191ee2c053fa746966 /Misc
parente1d455f3a3b82c2e08d5e133bcbab5a181b66cfb (diff)
downloadcpython-781266ebb60e7ac781a3e07030d92275721ff3cf.zip
cpython-781266ebb60e7ac781a3e07030d92275721ff3cf.tar.gz
cpython-781266ebb60e7ac781a3e07030d92275721ff3cf.tar.bz2
bpo-35640: Allow passing PathLike arguments to SimpleHTTPRequestHandler (GH-11398)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-09-10-15-52-55.bpo-35640.X0lp5f.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-10-15-52-55.bpo-35640.X0lp5f.rst b/Misc/NEWS.d/next/Library/2019-09-10-15-52-55.bpo-35640.X0lp5f.rst
new file mode 100644
index 0000000..abdf87a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-09-10-15-52-55.bpo-35640.X0lp5f.rst
@@ -0,0 +1,2 @@
+Allow passing a :term:`path-like object` as ``directory`` argument to the
+:class:`http.server.SimpleHTTPRequestHandler` class. Patch by Géry Ogam.