{{{#!highlight python
import cStringIO f = cStringIO.StringIO() f.write('safsd') f.seek(0)
with open(f, 'r') as b: print b.read() }}}
{{{#!highlight python
import cStringIO f = cStringIO.StringIO() f.write('safsd') f.seek(0)
with open(f, 'r') as b: print b.read() }}}
Comments !