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
45bf773f
Kaydet (Commit)
45bf773f
authored
Tem 17, 2010
tarafından
R. David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#1555570: correctly handle a \r\n that is split by the read buffer.
Patch and test by Tony Nelson.
üst
cbe1a4e2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
0 deletions
+40
-0
feedparser.py
Lib/email/feedparser.py
+4
-0
test_email.py
Lib/email/test/test_email.py
+33
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/email/feedparser.py
Dosyayı görüntüle @
45bf773f
...
@@ -104,6 +104,10 @@ class BufferedSubFile(object):
...
@@ -104,6 +104,10 @@ class BufferedSubFile(object):
# data after the final RE. In the case of a NL/CR terminated string,
# data after the final RE. In the case of a NL/CR terminated string,
# this is the empty string.
# this is the empty string.
self
.
_partial
=
parts
.
pop
()
self
.
_partial
=
parts
.
pop
()
#GAN 29Mar09 bugs 1555570, 1721862 Confusion at 8K boundary ending with \r:
# is there a \n to follow later?
if
not
self
.
_partial
and
parts
and
parts
[
-
1
]
.
endswith
(
'
\r
'
):
self
.
_partial
=
parts
.
pop
(
-
2
)
+
parts
.
pop
()
# parts is a list of strings, alternating between the line contents
# parts is a list of strings, alternating between the line contents
# and the eol character(s). Gather up a list of lines after
# and the eol character(s). Gather up a list of lines after
# re-attaching the newlines.
# re-attaching the newlines.
...
...
Lib/email/test/test_email.py
Dosyayı görüntüle @
45bf773f
...
@@ -2454,6 +2454,39 @@ Do you like this message?
...
@@ -2454,6 +2454,39 @@ Do you like this message?
-Me
-Me
"""
)
"""
)
def
test_pushCR_LF
(
self
):
'''FeedParser BufferedSubFile.push() assumed it received complete
line endings. A CR ending one push() followed by a LF starting
the next push() added an empty line.
'''
imt
=
[
(
"a
\r
\n
"
,
2
),
(
"b"
,
0
),
(
"c
\n
"
,
1
),
(
""
,
0
),
(
"d
\r\n
"
,
1
),
(
"e
\r
"
,
0
),
(
"
\n
f"
,
1
),
(
"
\r\n
"
,
1
),
]
from
email.feedparser
import
BufferedSubFile
,
NeedMoreData
bsf
=
BufferedSubFile
()
om
=
[]
nt
=
0
for
il
,
n
in
imt
:
bsf
.
push
(
il
)
nt
+=
n
n1
=
0
while
True
:
ol
=
bsf
.
readline
()
if
ol
==
NeedMoreData
:
break
om
.
append
(
ol
)
n1
+=
1
self
.
assertTrue
(
n
==
n1
)
self
.
assertTrue
(
len
(
om
)
==
nt
)
self
.
assertTrue
(
''
.
join
([
il
for
il
,
n
in
imt
])
==
''
.
join
(
om
))
class
TestParsers
(
TestEmailBase
):
class
TestParsers
(
TestEmailBase
):
...
...
Misc/NEWS
Dosyayı görüntüle @
45bf773f
...
@@ -473,6 +473,9 @@ C-API
...
@@ -473,6 +473,9 @@ C-API
Library
Library
-------
-------
- Issue #1555570: email no longer inserts extra blank lines when a \r\n
combo crosses an 8192 byte boundary.
- Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee.
- Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee.
- ``ast.literal_eval()`` now allows byte literals.
- ``ast.literal_eval()`` now allows byte literals.
...
...
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