Module _tkinter :: Class Tcl_Obj
[hide private]
[frames] | no frames]

type Tcl_Obj

object --+
         |
        Tcl_Obj

Instance Methods [hide private]
 
__cmp__(x, y)
cmp(x,y)
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
 
__repr__(x)
repr(x)
 
__str__(x)
str(x)
 
__unicode__(...)
convert argument to unicode
Properties [hide private]
  string
the string representation of this object, either as string or Unicode
  typename
name of the Tcl type
Method Details [hide private]

__getattribute__(...)

 

x.__getattribute__('name') <==> x.name

Overrides: object.__getattribute__

__repr__(x)
(Representation operator)

 

repr(x)

Overrides: object.__repr__

__str__(x)
(Informal representation operator)

 

str(x)

Overrides: object.__str__