Sometimes self.start is unicode:
eg.
>>>self.start
u'07:30:00'
Which makes datetime.combine complain
start = datetime.combine(self.job_record.date, self.start)
How does one:
- Test for unicode?
- Convert from u'07:30:00' to datetime.time?
|
|
|||
|
|
|
There are a few ways to convert your string to a
|
||
|
|
|
|
Assuming that there won't be extended charset characters in '07:30:00', then use If there is a possibility that the numbers in the time are charset-specific, use This may be a cases where it is more pythonic to try As an unwanted aside: the |
|||
|
|
|
|
Checking for unicode:
Converting strings to time:
|
||
|
|