diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-09 21:18:19 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-09 21:18:19 (GMT) |
commit | 04b5700b3643d0f04219481a9b5b94586109430d (patch) | |
tree | 3fbdc527b693a0b5bf8c64fd0af5e6efee7a224d | |
parent | 735b790fed417c797d68d031c75a005a5e6dfc52 (diff) | |
download | cpython-04b5700b3643d0f04219481a9b5b94586109430d.zip cpython-04b5700b3643d0f04219481a9b5b94586109430d.tar.gz cpython-04b5700b3643d0f04219481a9b5b94586109430d.tar.bz2 |
Issue #25584: Added "escape" to the __all__ list in the glob module.
From patch by Xavier de Gaye.
-rw-r--r-- | Lib/glob.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/glob.py b/Lib/glob.py index d674289..16330d8 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. @@ -61,6 +61,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. |