Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
deaf2caf
Kaydet (Commit)
deaf2caf
authored
Mar 27, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#2248: return result of QUIT from quit().
üst
6c052fd5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
smtplib.rst
Doc/library/smtplib.rst
+6
-1
smtplib.py
Lib/smtplib.py
+2
-1
NEWS
Misc/NEWS
+3
-1
No files found.
Doc/library/smtplib.rst
Dosyayı görüntüle @
deaf2caf
...
...
@@ -318,7 +318,12 @@ An :class:`SMTP` instance has the following methods:
.. method:: SMTP.quit()
Terminate the SMTP session and close the connection.
Terminate the SMTP session and close the connection. Return the result of
the SMTP ``QUIT`` command.
.. versionchanged:: 2.6
Return a value.
Low-level methods corresponding to the standard SMTP/ESMTP commands ``HELP``,
``RSET``, ``NOOP``, ``MAIL``, ``RCPT``, and ``DATA`` are also supported.
...
...
Lib/smtplib.py
Dosyayı görüntüle @
deaf2caf
...
...
@@ -726,8 +726,9 @@ class SMTP:
def
quit
(
self
):
"""Terminate the SMTP session."""
self
.
docmd
(
"quit"
)
res
=
self
.
docmd
(
"quit"
)
self
.
close
()
return
res
if
_have_ssl
:
...
...
Misc/NEWS
Dosyayı görüntüle @
deaf2caf
...
...
@@ -12,7 +12,7 @@ What's New in Python 2.6 alpha 2?
Core and builtins
-----------------
- Patch #2477: Added from __future__ import unicode_literals
- Patch #2477: Added from __future__ import unicode_literals
.
- Added backport of bytearray type.
...
...
@@ -76,6 +76,8 @@ Extensions Modules
Library
-------
- Issue #2248: return the result of the QUIT command. from SMTP.quit().
- Backport of Python 3.0's io module.
- Issue #2482: Make sure that the coefficient of a Decimal is always
...
...
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