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
48f4cf9b
Kaydet (Commit)
48f4cf9b
authored
Tem 28, 2007
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use BytesIO instead of cStringIO.StringIO.
üst
1bba9db0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
test_quopri.py
Lib/test/test_quopri.py
+5
-5
No files found.
Lib/test/test_quopri.py
Dosyayı görüntüle @
48f4cf9b
from
test
import
test_support
from
test
import
test_support
import
unittest
import
unittest
import
sys
,
os
,
cStringIO
,
subprocess
import
sys
,
os
,
io
,
subprocess
import
quopri
import
quopri
...
@@ -145,16 +145,16 @@ zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz''')
...
@@ -145,16 +145,16 @@ zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz''')
@withpythonimplementation
@withpythonimplementation
def
test_encode
(
self
):
def
test_encode
(
self
):
for
p
,
e
in
self
.
STRINGS
:
for
p
,
e
in
self
.
STRINGS
:
infp
=
cStringIO
.
String
IO
(
p
)
infp
=
io
.
Bytes
IO
(
p
)
outfp
=
cStringIO
.
String
IO
()
outfp
=
io
.
Bytes
IO
()
quopri
.
encode
(
infp
,
outfp
,
quotetabs
=
False
)
quopri
.
encode
(
infp
,
outfp
,
quotetabs
=
False
)
self
.
assertEqual
(
outfp
.
getvalue
(),
e
)
self
.
assertEqual
(
outfp
.
getvalue
(),
e
)
@withpythonimplementation
@withpythonimplementation
def
test_decode
(
self
):
def
test_decode
(
self
):
for
p
,
e
in
self
.
STRINGS
:
for
p
,
e
in
self
.
STRINGS
:
infp
=
cStringIO
.
String
IO
(
e
)
infp
=
io
.
Bytes
IO
(
e
)
outfp
=
cStringIO
.
String
IO
()
outfp
=
io
.
Bytes
IO
()
quopri
.
decode
(
infp
,
outfp
)
quopri
.
decode
(
infp
,
outfp
)
self
.
assertEqual
(
outfp
.
getvalue
(),
p
)
self
.
assertEqual
(
outfp
.
getvalue
(),
p
)
...
...
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