From: Hal Fulton Date: 2004-06-20T22:51:43+09:00 Subject: Re: StringIO class ? Lothar Scholz wrote: > Hello, i must set the $stderr to an object that collects the data > inside a buffer. Is there something like pythons StringIO class ? require 'stringio' somestring = "" out = StringIO.new(somestring,"w") $stderr = out # Above is untested... Hal