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
ba97659f
Kaydet (Commit)
ba97659f
authored
Ara 30, 2002
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
parsedate_tz(): Fix SF bug #552345, optional FWS between the comma and
the day in an RFC 2822 date.
üst
795833fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
_parseaddr.py
Lib/email/_parseaddr.py
+8
-1
No files found.
Lib/email/_parseaddr.py
Dosyayı görüntüle @
ba97659f
...
...
@@ -47,9 +47,16 @@ def parsedate_tz(data):
Accounts for military timezones.
"""
data
=
data
.
split
()
if
data
[
0
][
-
1
]
in
(
','
,
'.'
)
or
data
[
0
]
.
lower
()
in
_daynames
:
# The FWS after the comma after the day-of-week is optional, so search and
# adjust for this.
if
data
[
0
]
.
endswith
(
','
)
or
data
[
0
]
.
lower
()
in
_daynames
:
# There's a dayname here. Skip it
del
data
[
0
]
else
:
i
=
data
[
0
]
.
rfind
(
','
)
if
i
<
0
:
return
None
data
[
0
]
=
data
[
0
][
i
+
1
:]
if
len
(
data
)
==
3
:
# RFC 850 date, deprecated
stuff
=
data
[
0
]
.
split
(
'-'
)
if
len
(
stuff
)
==
3
:
...
...
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