diff options
author | Christian Heimes <christian@cheimes.de> | 2008-11-05 19:39:50 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-11-05 19:39:50 (GMT) |
commit | fb5faf02853f5f56fe96f00e8020a6fabe8ac390 (patch) | |
tree | a67ba6e8f279b1e34a5b2def4f89d203cb47e976 /Doc/library/imaplib.rst | |
parent | ecc42a2b82858763818484572dccc7e88a3bdda1 (diff) | |
download | cpython-fb5faf02853f5f56fe96f00e8020a6fabe8ac390.zip cpython-fb5faf02853f5f56fe96f00e8020a6fabe8ac390.tar.gz cpython-fb5faf02853f5f56fe96f00e8020a6fabe8ac390.tar.bz2 |
Issue #1210: Fixed imaplib
Patch by Victor Stinner, reviewed by Barry Warsaw.
Diffstat (limited to 'Doc/library/imaplib.rst')
-rw-r--r-- | Doc/library/imaplib.rst | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Doc/library/imaplib.rst b/Doc/library/imaplib.rst index 01249b2..3cbb45c 100644 --- a/Doc/library/imaplib.rst +++ b/Doc/library/imaplib.rst @@ -75,7 +75,7 @@ The second subclass allows for connections created by a child process: This is a subclass derived from :class:`IMAP4` that connects to the ``stdin/stdout`` file descriptors created by passing *command* to - ``os.popen2()``. + ``subprocess.Popen()``. The following utility functions are defined: @@ -468,13 +468,6 @@ An :class:`IMAP4` instance has the following methods: Allow simple extension commands notified by server in ``CAPABILITY`` response. -Instances of :class:`IMAP4_SSL` have just one additional method: - - -.. method:: IMAP4_SSL.ssl() - - Returns SSLObject instance used for the secure connection with the server. - The following attributes are defined on instances of :class:`IMAP4`: |