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
8a34596b
Kaydet (Commit)
8a34596b
authored
Nis 14, 2013
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#2118: IOError is deprecated, use OSError.
üst
96d6a78c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
smtplib.rst
Doc/library/smtplib.rst
+1
-1
3.4.rst
Doc/whatsnew/3.4.rst
+1
-1
smtplib.py
Lib/smtplib.py
+1
-1
No files found.
Doc/library/smtplib.rst
Dosyayı görüntüle @
8a34596b
...
...
@@ -103,7 +103,7 @@ A nice selection of exceptions is defined as well:
.. exception:: SMTPException
Subclass of :exc:`
IO
Error` that is the base exception class for all
Subclass of :exc:`
OS
Error` that is the base exception class for all
the other excpetions provided by this module.
...
...
Doc/whatsnew/3.4.rst
Dosyayı görüntüle @
8a34596b
...
...
@@ -162,7 +162,7 @@ detected. (Contributed by R. David Murray and Daniel Urban in :issue:`16522`.)
smtplib
-------
:exc:`~smtplib.SMTPException` is now a subclass of :exc:`
IO
Error`, which allows
:exc:`~smtplib.SMTPException` is now a subclass of :exc:`
OS
Error`, which allows
both socket level errors and SMTP protocol level errors to be caught in one
try/except statement by code that only cares whether or not an error occurred.
(:issue:`2118`).
...
...
Lib/smtplib.py
Dosyayı görüntüle @
8a34596b
...
...
@@ -66,7 +66,7 @@ bCRLF = b"\r\n"
OLDSTYLE_AUTH
=
re
.
compile
(
r"auth=(.*)"
,
re
.
I
)
# Exception classes used by this module.
class
SMTPException
(
IO
Error
):
class
SMTPException
(
OS
Error
):
"""Base class for all exceptions raised by this module."""
class
SMTPServerDisconnected
(
SMTPException
):
...
...
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