5 lines
80 B
Python
5 lines
80 B
Python
|
from java.util.regex import *
|
||
|
|
||
|
p = Pattern.compile("foo")
|
||
|
assert p.flags() == 0
|