Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pop3client.py 487B

1 year ago
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] = []