Despite being documented as path [1], using a keyword argument
raises a TypeError:
TypeError: getmtime() got an unexpected keyword argument 'path'
[1]: http://docs.python.org/3/library/os.path.html#os.path.getmtime
https://tools.ietf.org/html/rfc1123#page-55
https://tools.ietf.org/html/rfc822#section-5
"""
- mtime = _os.path.getmtime(path=path)
+ mtime = _os.path.getmtime(path)
return _email_utils.formatdate(
timeval=mtime, localtime=False, usegmt=True)