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
4cdceac7
Kaydet (Commit)
4cdceac7
authored
Eyl 03, 2007
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix #883466: don't allow Unicode as arguments to quopri and uu codecs.
üst
38f1b98c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
quopri_codec.py
Lib/encodings/quopri_codec.py
+3
-2
uu_codec.py
Lib/encodings/uu_codec.py
+3
-2
No files found.
Lib/encodings/quopri_codec.py
Dosyayı görüntüle @
4cdceac7
...
...
@@ -18,7 +18,8 @@ def quopri_encode(input, errors='strict'):
"""
assert
errors
==
'strict'
f
=
StringIO
(
input
)
# using str() because of cStringIO's Unicode undesired Unicode behavior.
f
=
StringIO
(
str
(
input
))
g
=
StringIO
()
quopri
.
encode
(
f
,
g
,
1
)
output
=
g
.
getvalue
()
...
...
@@ -33,7 +34,7 @@ def quopri_decode(input, errors='strict'):
"""
assert
errors
==
'strict'
f
=
StringIO
(
input
)
f
=
StringIO
(
str
(
input
)
)
g
=
StringIO
()
quopri
.
decode
(
f
,
g
)
output
=
g
.
getvalue
()
...
...
Lib/encodings/uu_codec.py
Dosyayı görüntüle @
4cdceac7
...
...
@@ -25,7 +25,8 @@ def uu_encode(input,errors='strict',filename='<data>',mode=0666):
assert
errors
==
'strict'
from
cStringIO
import
StringIO
from
binascii
import
b2a_uu
infile
=
StringIO
(
input
)
# using str() because of cStringIO's Unicode undesired Unicode behavior.
infile
=
StringIO
(
str
(
input
))
outfile
=
StringIO
()
read
=
infile
.
read
write
=
outfile
.
write
...
...
@@ -60,7 +61,7 @@ def uu_decode(input,errors='strict'):
assert
errors
==
'strict'
from
cStringIO
import
StringIO
from
binascii
import
a2b_uu
infile
=
StringIO
(
input
)
infile
=
StringIO
(
str
(
input
)
)
outfile
=
StringIO
()
readline
=
infile
.
readline
write
=
outfile
.
write
...
...
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