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
965794ed
Kaydet (Commit)
965794ed
authored
Mar 07, 2013
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge: PEP8 fixup on previous patch, remove unused imports in test_email.
üst
addb0be6
b9534f4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
generator.py
Lib/email/generator.py
+1
-1
test_email.py
Lib/test/test_email/test_email.py
+1
-5
No files found.
Lib/email/generator.py
Dosyayı görüntüle @
965794ed
...
...
@@ -156,7 +156,7 @@ class Generator:
self
.
write
(
self
.
_NL
)
laststripped
=
lines
[
-
1
]
.
rstrip
(
'
\r\n
'
)
self
.
write
(
laststripped
)
if
len
(
lines
[
-
1
])
!=
len
(
laststripped
):
if
len
(
lines
[
-
1
])
!=
len
(
laststripped
):
self
.
write
(
self
.
_NL
)
def
_write
(
self
,
msg
):
...
...
Lib/test/test_email/test_email.py
Dosyayı görüntüle @
965794ed
...
...
@@ -2,14 +2,10 @@
# Contact: email-sig@python.org
# email package unit tests
import
os
import
re
import
sys
import
time
import
base64
import
difflib
import
unittest
import
warnings
import
textwrap
from
io
import
StringIO
,
BytesIO
...
...
@@ -37,7 +33,7 @@ from email import iterators
from
email
import
base64mime
from
email
import
quoprimime
from
test.support
import
run_unittest
,
unlink
from
test.support
import
unlink
from
test.test_email
import
openfile
,
TestEmailBase
NL
=
'
\n
'
...
...
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