# File lib/archive/support/binary_stringio.rb, line 12
  def initialize(*args)
    super

    # Force a binary encoding when possible.
    if respond_to?(:set_encoding, true)
      set_encoding('binary')
    end
  end