Relax restriction on mtime

This commit is contained in:
Jean-Paul Calderone 2019-02-25 20:48:24 -05:00
parent 91d86363ec
commit 3b38a228b0

View File

@ -737,7 +737,7 @@ _NOW = Field.for_types(
_MTIME = Field.for_types( _MTIME = Field.for_types(
u"mtime", u"mtime",
[int, long, float], [int, long, float, type(None)],
u"A modification time to put into the metadata of a file being written in a local directory.", u"A modification time to put into the metadata of a file being written in a local directory.",
) )