From 160b093eb33263a7757adb3e4050b357889ef839 Mon Sep 17 00:00:00 2001 From: Ian Good Date: Thu, 16 Jan 2020 13:06:13 -0500 Subject: [PATCH] MaildirMessage.set_date accepts a float argument (#3617) --- stdlib/2and3/mailbox.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2and3/mailbox.pyi b/stdlib/2and3/mailbox.pyi index 0793f27f9..2639d9d8a 100644 --- a/stdlib/2and3/mailbox.pyi +++ b/stdlib/2and3/mailbox.pyi @@ -130,7 +130,7 @@ class MaildirMessage(Message): def add_flag(self, flag: str) -> None: ... def remove_flag(self, flag: str) -> None: ... def get_date(self) -> int: ... - def set_date(self, date: int) -> None: ... + def set_date(self, date: float) -> None: ... def get_info(self) -> str: ... def set_info(self, info: str) -> None: ...