# File lib_doc/rucy/cgi.rb, line 53
    def parse_args(query_string)
      if (query_string) then
        if (query_string.length > 1024) then
          raise HTTPError.new(414) # Request-URI Too Long
        end
        if (@pass_args) then
          if (! query_string.empty? && query_string !~ /=/) then
            return query_string.split(/\+/, -1)
          end
        end
      end

      []
    end