Method: TkWindow#inspect

Defined in:
lib/tk.rb

#inspectObject



5199
5200
5201
5202
5203
5204
5205
5206
# File 'lib/tk.rb', line 5199

def inspect
  if @@WIDGET_INSPECT_FULL
    super
  else
    str = super
    str[0..(str.index(' '))] << '@path=' << @path.inspect << '>'
  end
end