Exemplo n.º 1
0
 def end(self):
     """The end date"""
     return datetime_utils.parse_date(self._data[u'endDate'])
Exemplo n.º 2
0
 def end(self):
     """The end of the holiday"""
     return datetime_utils.parse_date(self._data[u'endDate'])
Exemplo n.º 3
0
 def start(self):
     """The start date of the schoolyear, as datetime object"""
     return datetime_utils.parse_date(self._data[u'startDate'])
Exemplo n.º 4
0
 def date(self):
     """the date of the classregevent."""
     return datetime_utils.parse_date(self._data[u'date'])
Exemplo n.º 5
0
 def start(self):
     """The start date of the holiday, as a datetime object."""
     return datetime_utils.parse_date(self._data[u'startDate'])
Exemplo n.º 6
0
 def end(self):
     """The end date"""
     return datetime_utils.parse_date(self._data[u'endDate'])
Exemplo n.º 7
0
 def date(self):
     """the date of the classregevent."""
     return datetime_utils.parse_date(self._data[u'date'])
Exemplo n.º 8
0
 def end(self):
     """The end of the holiday"""
     return datetime_utils.parse_date(self._data[u'endDate'])
Exemplo n.º 9
0
 def start(self):
     """The start date of the schoolyear, as datetime object"""
     return datetime_utils.parse_date(self._data[u'startDate'])
Exemplo n.º 10
0
 def end(self):
     '''The end date'''
     return datetime_utils.parse_date(self._data[u'endDate'])
Exemplo n.º 11
0
 def start(self):
     """The start date of the holiday, as a datetime object."""
     return datetime_utils.parse_date(self._data[u'startDate'])
Exemplo n.º 12
0
 def end(self):
     '''The end of the holiday'''
     return datetime_utils.parse_date(self._data[u'endDate'])
Exemplo n.º 13
0
 def end(self):
     '''The end date'''
     return datetime_utils.parse_date(self._data[u'endDate'])
Exemplo n.º 14
0
 def end(self):
     '''The end of the holiday'''
     return datetime_utils.parse_date(self._data[u'endDate'])
Exemplo n.º 15
0
 def start(self):
     '''The start date of the schoolyear, as datetime object'''
     return datetime_utils.parse_date(self._data['startDate'])
Exemplo n.º 16
0
 def start(self):
     '''The start date of the holiday, as a datetime object.'''
     return datetime_utils.parse_date(self._data['startDate'])