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
8093d6f8
Kaydet (Commit)
8093d6f8
authored
Mar 16, 2013
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge: #17431: Fix missing import of BytesFeedParser in email.parser.
üst
ca99440c
612528d9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
1 deletion
+8
-1
parser.py
Lib/email/parser.py
+1
-1
test_email.py
Lib/test/test_email/test_email.py
+4
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/email/parser.py
Dosyayı görüntüle @
8093d6f8
...
...
@@ -9,7 +9,7 @@ __all__ = ['Parser', 'HeaderParser', 'BytesParser', 'BytesHeaderParser']
import
warnings
from
io
import
StringIO
,
TextIOWrapper
from
email.feedparser
import
FeedParser
from
email.feedparser
import
FeedParser
,
BytesFeedParser
from
email.message
import
Message
from
email._policybase
import
compat32
...
...
Lib/test/test_email/test_email.py
Dosyayı görüntüle @
8093d6f8
...
...
@@ -36,6 +36,10 @@ from email import quoprimime
from
test.support
import
unlink
from
test.test_email
import
openfile
,
TestEmailBase
# These imports are documented to work, but we are testing them using a
# different path, so we import them here just to make sure they are importable.
from
email.parser
import
FeedParser
,
BytesFeedParser
NL
=
'
\n
'
EMPTYSTRING
=
''
SPACE
=
' '
...
...
Misc/ACKS
Dosyayı görüntüle @
8093d6f8
...
...
@@ -172,6 +172,7 @@ Jan-Hein Bührman
Dick Bulterman
Bill Bumgarner
Jimmy Burgett
Edmond Burnett
Tommy Burnette
Roger Burnham
Alastair Burt
...
...
Misc/NEWS
Dosyayı görüntüle @
8093d6f8
...
...
@@ -193,6 +193,8 @@ Core and Builtins
Library
-------
- Issue #17431: Fix missing import of BytesFeedParser in email.parser.
- Issue #1285086: Get rid of the refcounting hack and speed up
urllib.parse.unquote() and urllib.parse.unquote_to_bytes().
...
...
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