Commit 24a5d995 authored by Klaus Wölfel's avatar Klaus Wölfel Committed by Tatuya Kamada

Allow python StringIO type to enable seek in restricted python

parent e7024ea4
...@@ -180,11 +180,13 @@ allow_type(type(re.compile(''))) ...@@ -180,11 +180,13 @@ allow_type(type(re.compile('')))
allow_type(type(re.match('x','x'))) allow_type(type(re.match('x','x')))
allow_type(type(re.finditer('x','x'))) allow_type(type(re.finditer('x','x')))
import cStringIO import cStringIO, StringIO
f = cStringIO.StringIO() f_cStringIO = cStringIO.StringIO()
f_StringIO = StringIO.StringIO()
allow_module('cStringIO') allow_module('cStringIO')
allow_module('StringIO') allow_module('StringIO')
allow_type(type(f)) allow_type(type(f_cStringIO))
allow_type(type(f_StringIO))
ModuleSecurityInfo('cgi').declarePublic('escape', 'parse_header') ModuleSecurityInfo('cgi').declarePublic('escape', 'parse_header')
allow_module('datetime') allow_module('datetime')
......
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