projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c4176f
)
unicode re fix
author
Stefan Behnel
<scoder@users.berlios.de>
Wed, 14 May 2008 21:54:07 +0000
(23:54 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Wed, 14 May 2008 21:54:07 +0000
(23:54 +0200)
runtests.py
patch
|
blob
|
history
diff --git
a/runtests.py
b/runtests.py
index 082eae1787522ebd8b40f8f4f367346741cf897d..e7ce124ac5dcc9e92b6e998dc163373461124629 100644
(file)
--- a/
runtests.py
+++ b/
runtests.py
@@
-280,7
+280,7
@@
if __name__ == '__main__':
annotate_source = True
import re
- selectors = [ re.compile(r, re.I).search for r in sys.argv[1:] ]
+ selectors = [ re.compile(r, re.I
|re.U
).search for r in sys.argv[1:] ]
if not selectors:
selectors = [ lambda x:True ]