From 1d3469988e2c1f53ca84ffdc979d548c04ba3906 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 20 Oct 2020 19:45:38 +0300 Subject: [PATCH] bpo-38144: Re-add accidentally removed audition for glob. (GH-22805) --- Lib/glob.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/glob.py b/Lib/glob.py index 3c449a90dff..a491363f3f9 100644 --- a/Lib/glob.py +++ b/Lib/glob.py @@ -33,6 +33,7 @@ def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False): If recursive is true, the pattern '**' will match any files and zero or more directories and subdirectories. """ + sys.audit("glob.glob", pathname, recursive) if root_dir is not None: root_dir = os.fspath(root_dir) else: