From: Aaron Patterson Date: 2011-02-03T07:26:20+09:00 Subject: [ruby-core:35055] [Ruby 1.9-Bug#4359][Open] regular expressions created with Regexp::FIXEDENCODING have incorrect inspect Bug #4359: regular expressions created with Regexp::FIXEDENCODING have incorrect inspect http://redmine.ruby-lang.org/issues/show/4359 Author: Aaron Patterson Status: Open, Priority: Normal ruby -v: ruby 1.9.2p136 (2010-12-25 revision 30365) [x86_64-darwin10.5.0] irb(main):001:0> x = // => // irb(main):002:0> y = Regexp.new('', Regexp::FIXEDENCODING) => // irb(main):003:0> [x.inspect, y.inspect] => ["//", "//"] irb(main):004:0> [x.options, y.options] => [0, 16] irb(main):005:0> ---------------------------------------- http://redmine.ruby-lang.org