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
54bd49d4
Kaydet (Commit)
54bd49d4
authored
Mar 21, 2013
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge: #5712: Preemptively fix some other possible timing issues.
üst
a686ed7d
03b0116c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test_smtplib.py
Lib/test/test_smtplib.py
+3
-3
No files found.
Lib/test/test_smtplib.py
Dosyayı görüntüle @
54bd49d4
...
...
@@ -668,12 +668,12 @@ class SimSMTPChannel(smtpd.SMTPChannel):
if
self
.
rcpt_response
is
None
:
super
()
.
smtp_RCPT
(
arg
)
return
self
.
push
(
self
.
rcpt_response
[
self
.
rcpt_count
])
self
.
rcpt_count
+=
1
self
.
push
(
self
.
rcpt_response
[
self
.
rcpt_count
-
1
])
def
smtp_RSET
(
self
,
arg
):
super
()
.
smtp_RSET
(
arg
)
self
.
rset_count
+=
1
super
()
.
smtp_RSET
(
arg
)
def
smtp_DATA
(
self
,
arg
):
if
self
.
data_response
is
None
:
...
...
@@ -853,7 +853,7 @@ class SMTPSimTests(unittest.TestCase):
with
self
.
assertRaises
(
smtplib
.
SMTPSenderRefused
):
smtp
.
sendmail
(
'John'
,
'Sally'
,
'test message'
)
self
.
assertIsNone
(
smtp
.
sock
)
self
.
assertEqual
(
self
.
serv
.
_SMTPchannel
.
r
cp
t_count
,
0
)
self
.
assertEqual
(
self
.
serv
.
_SMTPchannel
.
r
se
t_count
,
0
)
def
test_421_from_rcpt_cmd
(
self
):
smtp
=
smtplib
.
SMTP
(
HOST
,
self
.
port
,
local_hostname
=
'localhost'
,
timeout
=
15
)
...
...
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