class DEBUGGER__::LimitedPP

def self.pp(obj, max=80)

def self.pp(obj, max=80)
  out = self.new(max)
  catch out do
    PP.singleline_pp(obj, out)
  end
  out.buf
end