Module ical_calendar :: Class Duration
[hide private]
[frames] | no frames]

Class Duration

source code

object --+
         |
        Duration

Instance Methods [hide private]
 
__init__(self, data)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
_extract_data(self, data) source code
 
get(self) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]
  _funcs = {'W': lambda x: x* 604800, 'H': lambda x: x* 3600, 'M...
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, data)
(Constructor)

source code 

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

Overrides: object.__init__
(inherited documentation)

Class Variable Details [hide private]

_funcs

Value:
{'W': lambda x: x* 604800, 'H': lambda x: x* 3600, 'M': lambda x: x* 6\
0, 'S': lambda x: x, 'D': lambda x: x* 86400, 'T': lambda x: 0, 'P': l\
ambda x: 0,}