Fixed #21256 -- Error in datetime_safe.datetime.combine.

This commit is contained in:
Aymeric Augustin 2013-10-13 19:09:26 +02:00
parent 589dc49e12
commit d9b6fb8f61
1 changed files with 5 additions and 2 deletions

View File

@ -19,8 +19,11 @@ class datetime(real_datetime):
def strftime(self, fmt):
return strftime(self, fmt)
def combine(self, date, time):
return datetime(date.year, date.month, date.day, time.hour, time.minute, time.microsecond, time.tzinfo)
@classmethod
def combine(cls, date, time):
return cls(date.year, date.month, date.day,
time.hour, time.minute, time.second,
time.microsecond, time.tzinfo)
def date(self):
return date(self.year, self.month, self.day)