Home | History | Annotate | Download | only in python2.7

Lines Matching defs:POP3

1 """A POP3 client class.
3 Based on the J. Myers POP3 draft, Jan. 96
18 __all__ = ["POP3","error_proto"]
36 class POP3:
62 POP3(hostname, port=110)
317 class POP3_SSL(POP3):
318 """POP3 client class over SSL connection
322 hostname - the hostname of the pop3 over ssl server
327 See the methods of the parent class POP3 for more documentation.
405 a = POP3(sys.argv[1])