changeset: 99027:fefc10de2775 branch: 3.5 parent: 99025:4532c4f37429 user: Serhiy Storchaka date: Mon Nov 09 23:18:19 2015 +0200 files: Lib/glob.py Misc/NEWS description: Issue #25584: Added "escape" to the __all__ list in the glob module. From patch by Xavier de Gaye. diff -r 4532c4f37429 -r fefc10de2775 Lib/glob.py --- a/Lib/glob.py Mon Nov 09 23:12:07 2015 +0200 +++ b/Lib/glob.py Mon Nov 09 23:18:19 2015 +0200 @@ -4,7 +4,7 @@ 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 -r 4532c4f37429 -r fefc10de2775 Misc/NEWS --- a/Misc/NEWS Mon Nov 09 23:12:07 2015 +0200 +++ b/Misc/NEWS Mon Nov 09 23:18:19 2015 +0200 @@ -61,6 +61,8 @@ 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.