summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-10-21 17:37:15 (GMT)
committerGitHub <noreply@github.com>2019-10-21 17:37:15 (GMT)
commit10ecbadb799ddf3393d1fc80119a3db14724d381 (patch)
treecc60337c59e1c2e32a7f1564e68faf02cb8ececc /Misc
parent1e73945470644202262e1ddee2b49e2708a29794 (diff)
downloadcpython-10ecbadb799ddf3393d1fc80119a3db14724d381.zip
cpython-10ecbadb799ddf3393d1fc80119a3db14724d381.tar.gz
cpython-10ecbadb799ddf3393d1fc80119a3db14724d381.tar.bz2
bpo-31202: Preserve case of literal parts in Path.glob() on Windows. (GH-16860)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-10-20-12-04-48.bpo-31202.NfdIus.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-20-12-04-48.bpo-31202.NfdIus.rst b/Misc/NEWS.d/next/Library/2019-10-20-12-04-48.bpo-31202.NfdIus.rst
new file mode 100644
index 0000000..8edb09d
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-10-20-12-04-48.bpo-31202.NfdIus.rst
@@ -0,0 +1,2 @@
+The case the result of :func:`pathlib.WindowsPath.glob` matches now the case
+of the pattern for literal parts.