Package dbf :: Module dates :: Class Time
[hide private]

Class Time

source code

object --+
         |
        Time

adds null capable datetime.time constructs

Instance Methods [hide private]
 
__add__(yo, other) source code
 
__eq__(yo, other) source code
 
__getattr__(yo, name) source code
 
__ge__(yo, other) source code
 
__gt__(yo, other) source code
 
__hash__(yo)
hash(x)
source code
 
__le__(yo, other) source code
 
__lt__(yo, other) source code
 
__ne__(yo, other) source code
 
__nonzero__(yo) source code
 
__radd__(yo, other) source code
 
__rsub__(yo, other) source code
 
__repr__(yo)
repr(x)
source code
 
__str__(yo)
str(x)
source code
 
__sub__(yo, other) source code

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

Static Methods [hide private]
a new object with type S, a subtype of T
__new__(cls, hour=None, minute=0, second=0, microsec=0)
hour may be a datetime.time
source code
Class Variables [hide private]
  max = Time(23, 59, 59, 999999)
  min = Time(0, 0, 0, 0)
Properties [hide private]
  _time

Inherited from object: __class__

Method Details [hide private]

__new__(cls, hour=None, minute=0, second=0, microsec=0)
Static Method

source code 

hour may be a datetime.time

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

__hash__(yo)
(Hashing function)

source code 

hash(x)

Overrides: object.__hash__
(inherited documentation)

__repr__(yo)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__str__(yo)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)