diff options
author | Kali Kaneko <kali@leap.se> | 2015-09-22 17:38:48 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-09-23 12:00:15 -0400 |
commit | fcdc227c23e6958aab902c95aeab35285c9993f0 (patch) | |
tree | 30b8e0f597267e828a98db971dff570ad54daf2e /src/leap/mail/imap/mailbox.py | |
parent | 309578890ba5d188f3d569473d756c28e06aa7ab (diff) |
[refactor] avoid circular import due to rfc3156
Diffstat (limited to 'src/leap/mail/imap/mailbox.py')
-rw-r--r-- | src/leap/mail/imap/mailbox.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/leap/mail/imap/mailbox.py b/src/leap/mail/imap/mailbox.py index e73994b..c7accbb 100644 --- a/src/leap/mail/imap/mailbox.py +++ b/src/leap/mail/imap/mailbox.py @@ -215,11 +215,13 @@ class IMAPMailbox(object): but in the future will be useful to get absolute UIDs from message sequence numbers. + :param message: the message sequence number. :type message: int :rtype: int :return: the UID of the message. + """ # TODO support relative sequences. The (imap) message should # receive a sequence number attribute: a deferred is not expected |