Lines Matching defs:POP3
1 """A POP3 client class.
3 Based on the J. Myers POP3 draft, Jan. 96
27 __all__ = ["POP3","error_proto"]
45 # reading arbitrary length lines. RFC 1939 limits POP3 line length to
51 class POP3:
80 POP3(hostname, port=110)
368 >>> c=poplib.POP3('localhost')
370 {'IMPLEMENTATION': ['Cyrus', 'POP3', 'server', 'v2.2.12'],
419 class POP3_SSL(POP3):
420 """POP3 client class over SSL connection
431 See the methods of the parent class POP3 for more documentation.
452 POP3.__init__(self, host, port, timeout)
455 sock = POP3._create_socket(self, timeout)
471 a = POP3(sys.argv[1])