Commit f6c62640 authored by Bryton Lacquement's avatar Bryton Lacquement 🚪 Committed by Ivan Tyagov

Restricted: allow BytesIO from io

parent 504ce4b2
......@@ -180,12 +180,14 @@ allow_type(type(re.compile('')))
allow_type(type(re.match('x','x')))
allow_type(type(re.finditer('x','x')))
import cStringIO, StringIO
import cStringIO, io, StringIO
f_cStringIO = cStringIO.StringIO()
f_StringIO = StringIO.StringIO()
allow_module('cStringIO')
allow_module('io')
allow_module('StringIO')
allow_type(type(f_cStringIO))
allow_type(io.BytesIO)
allow_type(type(f_StringIO))
ModuleSecurityInfo('cgi').declarePublic('escape', 'parse_header')
......
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