Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
fb5faf02
Commit
fb5faf02
authored
Nov 05, 2008
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #1210: Fixed imaplib
Patch by Victor Stinner, reviewed by Barry Warsaw.
parent
ecc42a2b
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
80 additions
and
118 deletions
+80
-118
Doc/library/imaplib.rst
Doc/library/imaplib.rst
+1
-8
Lib/imaplib.py
Lib/imaplib.py
+77
-110
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/imaplib.rst
View file @
fb5faf02
...
...
@@ -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`:
...
...
Lib/imaplib.py
View file @
fb5faf02
This diff is collapsed.
Click to expand it.
Misc/NEWS
View file @
fb5faf02
...
...
@@ -15,6 +15,8 @@ What's New in Python 3.0 beta 5
Core and Builtins
-----------------
- Issue #1210: Fixed imaplib and its documentation.
- Issue #4233: Changed semantic of ``_fileio.FileIO``'s ``close()``
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``
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment