# File activesupport/lib/active_support/core_ext/hash/keys.rb, line 14def stringify_keys!keys.eachdo|key|unlesskey.class.to_s=="String"# weird hack to make the tests run when string_ext_test.rb is also runningself[key.to_s]=self[key]delete(key)endendselfend