Kaydet (Commit) fb5faf02 authored tarafından Christian Heimes's avatar Christian Heimes

Issue #1210: Fixed imaplib

Patch by Victor Stinner, reviewed by Barry Warsaw.
üst ecc42a2b
...@@ -75,7 +75,7 @@ The second subclass allows for connections created by a child process: ...@@ -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 This is a subclass derived from :class:`IMAP4` that connects to the
``stdin/stdout`` file descriptors created by passing *command* to ``stdin/stdout`` file descriptors created by passing *command* to
``os.popen2()``. ``subprocess.Popen()``.
The following utility functions are defined: The following utility functions are defined:
...@@ -468,13 +468,6 @@ An :class:`IMAP4` instance has the following methods: ...@@ -468,13 +468,6 @@ An :class:`IMAP4` instance has the following methods:
Allow simple extension commands notified by server in ``CAPABILITY`` response. 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`: The following attributes are defined on instances of :class:`IMAP4`:
......
This diff is collapsed.
...@@ -15,6 +15,8 @@ What's New in Python 3.0 beta 5 ...@@ -15,6 +15,8 @@ What's New in Python 3.0 beta 5
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #1210: Fixed imaplib and its documentation.
- Issue #4233: Changed semantic of ``_fileio.FileIO``'s ``close()`` - Issue #4233: Changed semantic of ``_fileio.FileIO``'s ``close()``
method on file objects with closefd=False. The file descriptor is still method on file objects with closefd=False. The file descriptor is still
kept open but the file object behaves like a closed file. The ``FileIO`` kept open but the file object behaves like a closed file. The ``FileIO``
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment