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
6d94bd47
Kaydet (Commit)
6d94bd47
authored
Mar 16, 2011
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#9298: restore proper folding of base64 encoded bodies.
Patch by Yves Dorfsman.
üst
d3b7a55f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
6 deletions
+21
-6
encoders.py
Lib/email/encoders.py
+1
-1
test_email.py
Lib/email/test/test_email.py
+15
-5
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/email/encoders.py
Dosyayı görüntüle @
6d94bd47
...
@@ -12,7 +12,7 @@ __all__ = [
...
@@ -12,7 +12,7 @@ __all__ = [
]
]
from
base64
import
b64encode
as
_bencode
from
base64
import
encodebytes
as
_bencode
from
quopri
import
encodestring
as
_encodestring
from
quopri
import
encodestring
as
_encodestring
...
...
Lib/email/test/test_email.py
Dosyayı görüntüle @
6d94bd47
...
@@ -553,9 +553,18 @@ class TestMessageAPI(TestEmailBase):
...
@@ -553,9 +553,18 @@ class TestMessageAPI(TestEmailBase):
msg
[
'Dummy'
]
=
'dummy
\n
X-Injected-Header: test'
msg
[
'Dummy'
]
=
'dummy
\n
X-Injected-Header: test'
self
.
assertRaises
(
errors
.
HeaderParseError
,
msg
.
as_string
)
self
.
assertRaises
(
errors
.
HeaderParseError
,
msg
.
as_string
)
# Test the email.encoders module
# Test the email.encoders module
class
TestEncoders
(
unittest
.
TestCase
):
class
TestEncoders
(
unittest
.
TestCase
):
def
test_EncodersEncode_base64
(
self
):
with
openfile
(
'PyBanner048.gif'
,
'rb'
)
as
fp
:
bindata
=
fp
.
read
()
mimed
=
email
.
mime
.
image
.
MIMEImage
(
bindata
)
base64ed
=
mimed
.
get_payload
()
# the transfer-encoded body lines should all be <=76 characters
lines
=
base64ed
.
split
(
'
\n
'
)
self
.
assertLessEqual
(
max
([
len
(
x
)
for
x
in
lines
]),
76
)
def
test_encode_empty_payload
(
self
):
def
test_encode_empty_payload
(
self
):
eq
=
self
.
assertEqual
eq
=
self
.
assertEqual
msg
=
Message
()
msg
=
Message
()
...
@@ -1107,10 +1116,11 @@ class TestMIMEApplication(unittest.TestCase):
...
@@ -1107,10 +1116,11 @@ class TestMIMEApplication(unittest.TestCase):
def
test_body
(
self
):
def
test_body
(
self
):
eq
=
self
.
assertEqual
eq
=
self
.
assertEqual
bytes
=
b
'
\xfa\xfb\xfc\xfd\xfe\xff
'
bytesdata
=
b
'
\xfa\xfb\xfc\xfd\xfe\xff
'
msg
=
MIMEApplication
(
bytes
)
msg
=
MIMEApplication
(
bytesdata
)
eq
(
msg
.
get_payload
(),
'+vv8/f7/'
)
# whitespace in the cte encoded block is RFC-irrelevant.
eq
(
msg
.
get_payload
(
decode
=
True
),
bytes
)
eq
(
msg
.
get_payload
()
.
strip
(),
'+vv8/f7/'
)
eq
(
msg
.
get_payload
(
decode
=
True
),
bytesdata
)
...
...
Misc/ACKS
Dosyayı görüntüle @
6d94bd47
...
@@ -202,6 +202,7 @@ Daniel Dittmar
...
@@ -202,6 +202,7 @@ Daniel Dittmar
Jaromir Dolecek
Jaromir Dolecek
Ismail Donmez
Ismail Donmez
Dima Dorfman
Dima Dorfman
Yves Dorfsman
Cesar Douady
Cesar Douady
Dean Draayer
Dean Draayer
Fred L. Drake, Jr.
Fred L. Drake, Jr.
...
...
Misc/NEWS
Dosyayı görüntüle @
6d94bd47
...
@@ -40,6 +40,10 @@ Core and Builtins
...
@@ -40,6 +40,10 @@ Core and Builtins
Library
Library
-------
-------
- Issue #9298: base64 bodies weren't being folded to line lengths less than 78,
which was a regression relative to Python2. Unlike Python2, the last line
of the folded body now ends with a carriage return.
- Issue #11569: use absolute path to the sysctl command in multiprocessing to
- Issue #11569: use absolute path to the sysctl command in multiprocessing to
ensure that it will be found regardless of the shell PATH. This ensures
ensure that it will be found regardless of the shell PATH. This ensures
that multiprocessing.cpu_count works on default installs of MacOSX.
that multiprocessing.cpu_count works on default installs of MacOSX.
...
...
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