# File src/Request.rb, line 127
                def unescape(str)
                        str.gsub(/\+/, ' ').gsub(/%([0-9a-fA-F]{2})/){ [$1.hex].pack("c") }
                end