gobject :: GType :: Class GType
[hide private]
[frames] | no frames]

Class GType

source code

object --+
         |
        GType

Instance Methods [hide private]
 
__eq__(x, y)
x==y
source code
 
__ge__(x, y)
x>=y
source code
 
__gt__(x, y)
x>y
source code
 
__hash__(x)
hash(x)
source code
 
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__le__(x, y)
x<=y
source code
 
__lt__(x, y)
x<y
source code
 
__ne__(x, y)
x!=y
source code
a new object with type S, a subtype of T
__new__(T, S, ...) source code
 
__repr__(x)
repr(x)
source code
 
has_value_table(...) source code
 
is_a(...) source code
 
is_abstract(...) source code
 
is_classed(...) source code
 
is_deep_derivable(...) source code
 
is_derivable(...) source code
 
is_instantiatable(...) source code
 
is_interface(...) source code
 
is_value_abstract(...) source code
 
is_value_type(...) source code

Inherited from object: __delattr__, __format__, __getattribute__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Static Methods [hide private]
 
from_name(...) source code
Properties [hide private]
  children
  depth
  fundamental
  interfaces
  name
  parent
  pytype

Inherited from object: __class__

Method Details [hide private]

__hash__(x)
(Hashing function)

source code 

hash(x)

Overrides: object.__hash__

__init__(...)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__

__new__(T, S, ...)

source code 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__

__repr__(x)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__