mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 10:06:40 -04:00
Based on RFC 3501 and original imaplib module. This is a version of imaplib that uses threads to allow full use of the IMAP4 concurrency features, and to de-couple a user of imaplib from i/o lags, except where explicitly allowed. PR: 262232 Author: Derek Schrock <dereks@lifeofadishwasher.com> Differential Revision: https://reviews.freebsd.org/D34390
8 lines
175 B
Python
8 lines
175 B
Python
def test_import_normally():
|
|
from imaplib2 import IMAP4_SSL
|
|
assert IMAP4_SSL
|
|
|
|
|
|
def test_import_hack():
|
|
from imaplib2.imaplib2 import IMAP4_SSL
|
|
assert IMAP4_SSL
|