summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/glob.py2
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/glob.py b/Lib/glob.py
index d674289318..16330d816a 100644
--- a/Lib/glob.py
+++ b/Lib/glob.py
@@ -4,7 +4,7 @@ import os
import re
import fnmatch
-__all__ = ["glob", "iglob"]
+__all__ = ["glob", "iglob", "escape"]
def glob(pathname, *, recursive=False):
"""Return a list of paths matching a pathname pattern.
diff --git a/Misc/NEWS b/Misc/NEWS
index 9f699ca579..c35caac0cb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -79,6 +79,8 @@ Core and Builtins
Library
-------
+- Issue #25584: Added "escape" to the __all__ list in the glob module.
+
- Issue #25584: Fixed recursive glob() with patterns starting with '\*\*'.
- Issue #25446: Fix regression in smtplib's AUTH LOGIN support.