fixed missing IMAP4_SSL_PORT
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 4a9200b..266acb6 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -29,6 +29,7 @@
 CRLF = '\r\n'
 Debug = 0
 IMAP4_PORT = 143
+IMAP4_SSL_PORT = 993
 AllowedVersions = ('IMAP4REV1', 'IMAP4')        # Most recent first
 
 #       Commands
@@ -987,7 +988,7 @@
 
     """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).