]> granicus.if.org Git - python/commitdiff
fixed missing IMAP4_SSL_PORT
authorPiers Lauder <piers@cs.su.oz.au>
Fri, 8 Mar 2002 09:05:12 +0000 (09:05 +0000)
committerPiers Lauder <piers@cs.su.oz.au>
Fri, 8 Mar 2002 09:05:12 +0000 (09:05 +0000)
Lib/imaplib.py

index 4a9200bedd352a6a83b8633b4a4b72b6b051fba0..266acb668d20ecede4bcb0aed0e4f9d373038c3f 100644 (file)
@@ -29,6 +29,7 @@ __all__ = ["IMAP4", "Internaldate2tuple",
 CRLF = '\r\n'
 Debug = 0
 IMAP4_PORT = 143
+IMAP4_SSL_PORT = 993
 AllowedVersions = ('IMAP4REV1', 'IMAP4')        # Most recent first
 
 #       Commands
@@ -987,7 +988,7 @@ class IMAP4_SSL(IMAP4):
 
     """IMAP4 client class over SSL connection
 
-    Instantiate with: IMAP4_SSL([host[, port[, keyfile[, certfile]]]])
+    Instantiate with: IMAP4_SSL([host[, port[, keyfile[, certfile]]]])
 
             host - host's name (default: localhost);
             port - port number (default: standard IMAP4 SSL port).