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

Class object

Known Subclasses:
basestring, int, buffer, classmethod, complex, dict, enumerate, file, float, list, long, property, slice, staticmethod, super, tuple, type, xrange, threading._Verbose, dics.slalib.doubleArray, dics.slalib.floatArray, dics.slalib.intArray

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)

Class Variables [hide private]
__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)

Class Variable Details [hide private]

__class__

Value:
<attribute '__class__' of 'object' objects>