changeset: 99028:128e61cb3de2 parent: 99026:175cd763de57 parent: 99027:fefc10de2775 user: Serhiy Storchaka date: Mon Nov 09 23:18:32 2015 +0200 files: Misc/NEWS description: Issue #25584: Added "escape" to the __all__ list in the glob module. From patch by Xavier de Gaye. diff -r 175cd763de57 -r 128e61cb3de2 Lib/glob.py --- a/Lib/glob.py Mon Nov 09 23:12:28 2015 +0200 +++ b/Lib/glob.py Mon Nov 09 23:18:32 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 175cd763de57 -r 128e61cb3de2 Misc/NEWS --- a/Misc/NEWS Mon Nov 09 23:12:28 2015 +0200 +++ b/Misc/NEWS Mon Nov 09 23:18:32 2015 +0200 @@ -79,6 +79,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.