object :: Class object
[hide private]
[frames] | no frames]

Class object



Known Subclasses:
basestring, int, buffer, classmethod, complex, dict, enumerate, file, float, frozenset, list, long, property, reversed, set, slice, staticmethod, super, tuple, type, xrange, geomutils.geomalgorithms.Vert, geomutils.efitlib.efit_info, geomutils.efitlib.ellipsoid

The most base type

Instance Methods [hide private]
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __hash__(x)
hash(x)
  __init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
  __new__(T, S, ...)
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __repr__(x)
repr(x)
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
  __str__(x)
str(x)

Properties [hide private]
  __class__
the object's class

Method Details [hide private]

__delattr__(...)

 
x.__delattr__('name') <==> del x.name

__getattribute__(...)

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

__hash__(x)
(Hashing function)

 
hash(x)

__init__(...)
(Constructor)

 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

__new__(T, S, ...)

 
Returns:
a new object with type S, a subtype of T

__reduce__(...)

 
helper for pickle

__reduce_ex__(...)

 
helper for pickle

__repr__(x)
(Representation operator)

 
repr(x)

__setattr__(...)

 
x.__setattr__('name', value) <==> x.name = value

__str__(x)
(Informal representation operator)

 
str(x)

Property Details [hide private]

__class__

the object's class