Commit 3b7718f9 authored by Bryton Lacquement's avatar Bryton Lacquement 🚪

Restricted: allow BytesIO from io

parent 58ad4b49
......@@ -214,12 +214,15 @@ 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_io_BytesIO = io.BytesIO()
f_StringIO = StringIO.StringIO()
allow_module('cStringIO')
allow_module('io')
allow_module('StringIO')
allow_type(type(f_cStringIO))
allow_type(type(f_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