Closed qguv closed 9 years ago
The ** glob syntax is available in Python 3 but not Python 2. In legacy Python 2, it's necessary to specify how many sub-directories you'd like to glob through by repeated applications of the single * wildcard.
**
*
Fixes #42.
I was wrong; no it doesn't; you're using glob2. Please see the much better #259.
The
**
glob syntax is available in Python 3 but not Python 2. In legacy Python 2, it's necessary to specify how many sub-directories you'd like to glob through by repeated applications of the single*
wildcard.Fixes #42.