# File lib/cgikit/bytedata.rb, line 152
    def <<( bytes )
      open do
        @tempfile.seek(0, IO::SEEK_END)
        if ByteData === bytes then
          @tempfile << bytes.bytes
        else
          @tempfile << bytes
        end
        self
      end
    end