(s)
| 146 | |
| 147 | |
| 148 | def _convert_second_fraction(s): |
| 149 | if not s: |
| 150 | return 0 |
| 151 | # Pad zeros to ensure the fraction length in microseconds |
| 152 | s = s.ljust(6, "0") |
| 153 | return int(s[:6]) |
| 154 | |
| 155 | |
| 156 | DATETIME_RE = re.compile( |
no outgoing calls
no test coverage detected