diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-02-06 08:26:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 08:26:37 (GMT) |
commit | 54b4f14712b9350f11c983f1c8ac47a3716958a7 (patch) | |
tree | b5f60902fd88da6d4c5547d506f5260bacbe5a9b /Misc | |
parent | ab0d892288f3058856a8213333e8c3e4ed8a562b (diff) | |
download | cpython-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.rst | 2 |
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`. |