# File lib/cfpropertylist/rbBinaryCFPropertyList.rb, line 441
    def Binary.ascii_string?(str)
      if str.respond_to?(:ascii_only?)
        str.ascii_only?
      else
        str !~ /[\x80-\xFF]/mn
      end
    end