Commit d1c10f64 authored by Alex Willmer's avatar Alex Willmer Committed by David Wilson

first stage: Use string concatenation

parent b490cde6
......@@ -718,7 +718,7 @@ class Stream(mitogen.core.Stream):
os.write(1,'EC0\n')
C=zlib.decompress(sys.stdin.read(input()))
os.fdopen(W,'w',0).write(C)
os.fdopen(w,'w',0).write('%s\n%s'%(len(C),C))
os.fdopen(w,'w',0).write('%s\n'%len(C)+C)
os.write(1,'EC1\n')
sys.exit(0)
......
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