summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorandrei kulakov <andrei.avk@gmail.com>2021-12-18 14:23:34 (GMT)
committerGitHub <noreply@github.com>2021-12-18 14:23:34 (GMT)
commitae36cd1e792db9d6db4c6847ec2a7d50a71f2b68 (patch)
tree3e223cb1c046e119dbce83550d7bf5a6ed213a76 /Misc/NEWS.d/next
parent6f2df4295123f8b961d49474b7668f7564a534a4 (diff)
downloadcpython-ae36cd1e792db9d6db4c6847ec2a7d50a71f2b68.zip
cpython-ae36cd1e792db9d6db4c6847ec2a7d50a71f2b68.tar.gz
cpython-ae36cd1e792db9d6db4c6847ec2a7d50a71f2b68.tar.bz2
bpo-37578: glob.glob -- added include_hidden parameter (GH-30153)
Automerge-Triggered-By: GH:asvetlov
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2021-12-17-13-22-37.bpo-37578._tluuR.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-12-17-13-22-37.bpo-37578._tluuR.rst b/Misc/NEWS.d/next/Library/2021-12-17-13-22-37.bpo-37578._tluuR.rst
new file mode 100644
index 0000000..455d064
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-12-17-13-22-37.bpo-37578._tluuR.rst
@@ -0,0 +1,3 @@
+Add *include_hidden* parameter to :func:`~glob.glob` and :func:`~glob.iglob` to
+match hidden files and directories when using special characters like ``*``,
+``**``, ``?`` and ``[]``.