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
4947049b
Commit
4947049b
authored
Dec 26, 2012
by
Jesus Cea
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Closes #16789: :meth:`quit` links to constants instead of own module
parent
2f01e239
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
Doc/library/ftplib.rst
Doc/library/ftplib.rst
+4
-4
Doc/library/poplib.rst
Doc/library/poplib.rst
+1
-1
Doc/library/smtplib.rst
Doc/library/smtplib.rst
+2
-1
No files found.
Doc/library/ftplib.rst
View file @
4947049b
...
@@ -370,10 +370,10 @@ followed by ``lines`` for the text version or ``binary`` for the binary version.
...
@@ -370,10 +370,10 @@ followed by ``lines`` for the text version or ``binary`` for the binary version.
.. method:: FTP.close()
.. method:: FTP.close()
Close the connection unilaterally. This should not be applied to an already
Close the connection unilaterally. This should not be applied to an already
closed connection such as after a successful call to :meth:`
quit`. After this
closed connection such as after a successful call to :meth:`
~FTP.quit`.
call the :class:`FTP` instance should not be used any more (after a call to
After this call the :class:`FTP` instance should not be used any more (after
:meth:`close` or :meth:`quit` you cannot reopen the connection by issuing
a call to :meth:`close` or :meth:`~FTP.quit` you cannot reopen the
another :meth:`login` method).
connection by issuing
another :meth:`login` method).
FTP_TLS Objects
FTP_TLS Objects
...
...
Doc/library/poplib.rst
View file @
4947049b
...
@@ -102,7 +102,7 @@ An :class:`POP3` instance has the following methods:
...
@@ -102,7 +102,7 @@ An :class:`POP3` instance has the following methods:
.. method:: POP3.pass_(password)
.. method:: POP3.pass_(password)
Send password, response includes message count and mailbox size. Note: the
Send password, response includes message count and mailbox size. Note: the
mailbox on the server is locked until :meth:`quit` is called.
mailbox on the server is locked until :meth:`
~poplib.
quit` is called.
.. method:: POP3.apop(user, secret)
.. method:: POP3.apop(user, secret)
...
...
Doc/library/smtplib.rst
View file @
4947049b
...
@@ -32,7 +32,8 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions).
...
@@ -32,7 +32,8 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions).
setting will be used).
setting will be used).
For normal use, you should only require the initialization/connect,
For normal use, you should only require the initialization/connect,
:meth:`sendmail`, and :meth:`quit` methods. An example is included below.
:meth:`sendmail`, and :meth:`~smtplib.quit` methods.
An example is included below.
.. versionchanged:: 2.6
.. versionchanged:: 2.6
*timeout* was added.
*timeout* was added.
...
...
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