/usr/lib/python3/dist-packages/mwclient/util.py is in python3-mwclient 0.8.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | import time
def parse_timestamp(t):
if t is None or t == '0000-00-00T00:00:00Z':
return (0, 0, 0, 0, 0, 0, 0, 0, 0)
return time.strptime(t, '%Y-%m-%dT%H:%M:%SZ')
|