[issue9584] Allow curly brace expansion

Serhiy Storchaka report at bugs.python.org
Tue Nov 6 17:37:01 CET 2012


Serhiy Storchaka added the comment:

> I am absolutely sure this was working in my original submission, I had even added unit tests for it:

It can't be working in any implementation.

>>> os.makedirs('a{b,c}d/e')
>>> os.listdir('a{b,c}d')
['e']
>>> glob.glob('a{b,c}d/*')
[]

Was ['a{b,c}d/e'] in 3.3.

----------

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


More information about the Python-bugs-list mailing list