class IRB::OutputMethod

def printf(format, *opts)

#parse_printf_format
Extends IO#printf to format the given +opts+ for Kernel#sprintf using
def printf(format, *opts)
  if /(%*)%I/ =~ format
    format, opts = parse_printf_format(format, opts)
  end
  print sprintf(format, *opts)
end