pop3client.py 487 B

12345678910111213141516171819202122
  1. """
  2. Deprecated POP3 client protocol implementation.
  3. Don't use this module directly. Use twisted.mail.pop3 instead.
  4. """
  5. import warnings
  6. from typing import List
  7. from twisted.mail._pop3client import ERR, OK, POP3Client
  8. warnings.warn(
  9. "twisted.mail.pop3client was deprecated in Twisted 21.2.0. Use twisted.mail.pop3 instead.",
  10. DeprecationWarning,
  11. stacklevel=2,
  12. )
  13. # Fake usage to please pyflakes as we don't to add them to __all__.
  14. OK
  15. ERR
  16. POP3Client
  17. __all__: List[str] = []