Convert a date into COM format.
(self)
| 272 | return time.mktime(self.ToTimeTuple()) |
| 273 | |
| 274 | def ToCOMTime(self): |
| 275 | """Convert a date into COM format.""" |
| 276 | return pythoncom.MakeTime(self.ToUnixTime()) |
| 277 | |
| 278 | |
| 279 | #More conversion functions. |
nothing calls this directly
no test coverage detected