예제 #1
0
 def start(self):
     """
     Returns the python datetime at which this Month begins.  It is an inclusive datetime.
     """
     if self._start_date == None:
         self._start_date = pydt(self.year, self.ordinal, 1, tzinfo=self.tzinfo)
     return self._start_date
예제 #2
0
 def start(self):
     if self._start_date == None:
         self._start_date = pydt(self.year, self.month, self.ordinal, tzinfo=self.tzinfo)
     return self._start_date