qpid :: datatypes :: timestamp :: Class timestamp
[frames] | no frames]

Class timestamp

object --+    
         |    
     float --+
             |
            timestamp

Instance Methods
 
__abs__(self)
abs(x)
 
__add__(self, other)
x+y
 
__neg__(self)
-x
 
__pos__(self)
+x
 
__radd__(self, other)
y+x
 
__repr__(self)
repr(x)
 
__rsub__(self, other)
y-x
 
__sub__(self, other)
x-y
 
datetime(self)

Inherited from float: __coerce__, __div__, __divmod__, __eq__, __float__, __floordiv__, __ge__, __getattribute__, __getformat__, __getnewargs__, __gt__, __hash__, __int__, __le__, __long__, __lt__, __mod__, __mul__, __ne__, __nonzero__, __pow__, __rdiv__, __rdivmod__, __rfloordiv__, __rmod__, __rmul__, __rpow__, __rtruediv__, __setformat__, __str__, __truediv__

Inherited from object: __delattr__, __init__, __reduce__, __reduce_ex__, __setattr__

Static Methods
a new object with type S, a subtype of T
__new__(cls, obj=None)
Properties

Inherited from object: __class__

Method Details

__abs__(self)

 

abs(x)

Overrides: float.__abs__
(inherited documentation)

__add__(self, other)
(Addition operator)

 

x+y

Overrides: float.__add__
(inherited documentation)

__neg__(self)

 

-x

Overrides: float.__neg__
(inherited documentation)

__new__(cls, obj=None)
Static Method

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__
(inherited documentation)

__pos__(self)

 

+x

Overrides: float.__pos__
(inherited documentation)

__radd__(self, other)
(Right-side addition operator)

 

y+x

Overrides: float.__radd__
(inherited documentation)

__repr__(self)
(Representation operator)

 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__rsub__(self, other)

 

y-x

Overrides: float.__rsub__
(inherited documentation)

__sub__(self, other)
(Subtraction operator)

 

x-y

Overrides: float.__sub__
(inherited documentation)