Commit 31bc80a4 authored by Klaus Wölfel's avatar Klaus Wölfel Committed by Xiaowu Zhang

Allow re.finditer in restricted python

parent f4d8992f
......@@ -178,6 +178,7 @@ allow_module('fnmatch')
allow_module('re')
allow_type(type(re.compile('')))
allow_type(type(re.match('x','x')))
allow_type(type(re.finditer('x','x')))
import cStringIO
f = cStringIO.StringIO()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment