Kaydet (Commit) 04b5700b authored tarafından Serhiy Storchaka's avatar Serhiy Storchaka

Issue #25584: Added "escape" to the __all__ list in the glob module.

From patch by Xavier de Gaye.
üst 735b790f
...@@ -4,7 +4,7 @@ import os ...@@ -4,7 +4,7 @@ import os
import re import re
import fnmatch import fnmatch
__all__ = ["glob", "iglob"] __all__ = ["glob", "iglob", "escape"]
def glob(pathname, *, recursive=False): def glob(pathname, *, recursive=False):
"""Return a list of paths matching a pathname pattern. """Return a list of paths matching a pathname pattern.
......
...@@ -61,6 +61,8 @@ Core and Builtins ...@@ -61,6 +61,8 @@ Core and Builtins
Library Library
------- -------
- Issue #25584: Added "escape" to the __all__ list in the glob module.
- Issue #25584: Fixed recursive glob() with patterns starting with '\*\*'. - Issue #25584: Fixed recursive glob() with patterns starting with '\*\*'.
- Issue #25446: Fix regression in smtplib's AUTH LOGIN support. - Issue #25446: Fix regression in smtplib's AUTH LOGIN support.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment