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
f1b2ba6a
Kaydet (Commit)
f1b2ba6a
authored
Agu 29, 2005
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix logic error introduced in last commit. Also add a comment to explain what
the code is doing.
üst
c2033707
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
_strptime.py
Lib/_strptime.py
+5
-2
No files found.
Lib/_strptime.py
Dosyayı görüntüle @
f1b2ba6a
...
...
@@ -147,11 +147,14 @@ class LocaleTime(object):
# strings (e.g., MacOS 9 having timezone as ('','')).
if
old
:
current_format
=
current_format
.
replace
(
old
,
new
)
# If %W is used, then Sunday, 2005-01-03 will fall on week 0 since
# 2005-01-03 occurs before the first Monday of the year. Otherwise
# %U is used.
time_tuple
=
time
.
struct_time
((
1999
,
1
,
3
,
1
,
1
,
1
,
6
,
3
,
0
))
if
'00'
in
time
.
strftime
(
directive
,
time_tuple
):
U_W
=
'
%
U'
else
:
U_W
=
'
%
W'
else
:
U_W
=
'
%
U'
date_time
[
offset
]
=
current_format
.
replace
(
'11'
,
U_W
)
self
.
LC_date_time
=
date_time
[
0
]
self
.
LC_date
=
date_time
[
1
]
...
...
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