[issue6235] \d missing from effects of re.ASCII flag

2009-06-08 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r73285. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Py

[issue6235] \d missing from effects of re.ASCII flag

2009-06-07 Thread Mitchell Model
New submission from Mitchell Model : In the documentation of the re module the ASCII flag is described as "Make \w, \W, \b, \B, \s and \S perform ASCII-only matching instead of full Unicode matching." This should also include \d and \D. -- assignee: georg.brandl components: Documentation