summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-02-06 08:26:37 (GMT)
committerGitHub <noreply@github.com>2020-02-06 08:26:37 (GMT)
commit54b4f14712b9350f11c983f1c8ac47a3716958a7 (patch)
treeb5f60902fd88da6d4c5547d506f5260bacbe5a9b /Misc
parentab0d892288f3058856a8213333e8c3e4ed8a562b (diff)
downloadcpython-54b4f14712b9350f11c983f1c8ac47a3716958a7.zip
cpython-54b4f14712b9350f11c983f1c8ac47a3716958a7.tar.gz
cpython-54b4f14712b9350f11c983f1c8ac47a3716958a7.tar.bz2
bpo-38149: Call sys.audit() only once per call for glob.glob(). (GH-18360)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-02-05-11-24-16.bpo-38149.GWsjHE.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-02-05-11-24-16.bpo-38149.GWsjHE.rst b/Misc/NEWS.d/next/Library/2020-02-05-11-24-16.bpo-38149.GWsjHE.rst
new file mode 100644
index 0000000..b4ec60b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-02-05-11-24-16.bpo-38149.GWsjHE.rst
@@ -0,0 +1,2 @@
+:func:`sys.audit` is now called only once per call of :func:`glob.glob` and
+:func:`glob.iglob`.