From: ts Date: 2002-10-15T21:02:06+09:00 Subject: Re: How to undefine a method on the fly? >>>>> "P" == Philip Mak writes: P> Suppose I have this: P> class Hello P> def hi P> puts "Hi" P> end P> end P> x = Hello.new class << x undef hi end Guy Decoux