[issue13968] Add a recursive function to the glob package

Éric Araujo report at bugs.python.org
Wed Feb 8 16:21:44 CET 2012


Éric Araujo <merwok at netwok.org> added the comment:

There is an alternative: supporting ** syntax, e.g. '**/*.py', which should find all *.py files in the current directory and all descendents.  At present glob('**/*.py') is equivalent to glob('*/*.py'), but we would say this behavior was undefined and the new behavior would be a new feature.

----------
nosy: +eric.araujo
versions: +Python 3.3 -Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13968>
_______________________________________


More information about the Python-bugs-list mailing list