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
72669649
Kaydet (Commit)
72669649
authored
Tem 16, 2016
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge: #27522: break unintended cycle in feedparser.
üst
73653614
702b0460
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
feedparser.py
Lib/email/feedparser.py
+6
-3
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/email/feedparser.py
Dosyayı görüntüle @
72669649
...
...
@@ -145,7 +145,7 @@ class FeedParser:
"""
self
.
policy
=
policy
self
.
_
factory_kwds
=
lambda
:
{
'policy'
:
self
.
policy
}
self
.
_
old_style_factory
=
False
if
_factory
is
None
:
# What this should be:
#self._factory = policy.default_message_factory
...
...
@@ -160,7 +160,7 @@ class FeedParser:
_factory
(
policy
=
self
.
policy
)
except
TypeError
:
# Assume this is an old-style factory
self
.
_
factory_kwds
=
lambda
:
{}
self
.
_
old_style_factory
=
True
self
.
_input
=
BufferedSubFile
()
self
.
_msgstack
=
[]
self
.
_parse
=
self
.
_parsegen
()
.
__next__
...
...
@@ -197,7 +197,10 @@ class FeedParser:
return
root
def
_new_message
(
self
):
msg
=
self
.
_factory
(
**
self
.
_factory_kwds
())
if
self
.
_old_style_factory
:
msg
=
self
.
_factory
()
else
:
msg
=
self
.
_factory
(
policy
=
self
.
policy
)
if
self
.
_cur
and
self
.
_cur
.
get_content_type
()
==
'multipart/digest'
:
msg
.
set_default_type
(
'message/rfc822'
)
if
self
.
_msgstack
:
...
...
Misc/NEWS
Dosyayı görüntüle @
72669649
...
...
@@ -18,6 +18,8 @@ Core and Builtins
Library
-------
- Issue #27522: Avoid an unintentional reference cycle in email.feedparser.
- Issue 27512: Fix a segfault when os.fspath() called a an __fspath__() method
that raised an exception. Patch by Xiang Zhang.
...
...
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