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