# File lib/pry/method.rb, line 222
      def singleton_class_of(obj)
        begin
          class << obj; self; end
        rescue TypeError # can't define singleton. Fixnum, Symbol, Float, ...
          obj.class
        end
      end