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
11b35352
Kaydet (Commit)
11b35352
authored
Eyl 26, 2006
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make the error message for when the time data and format do not match clearer.
üst
c839c2f2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
_strptime.py
Lib/_strptime.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/_strptime.py
Dosyayı görüntüle @
11b35352
...
...
@@ -306,7 +306,7 @@ def strptime(data_string, format="%a %b %d %H:%M:%S %Y"):
_cache_lock
.
release
()
found
=
format_regex
.
match
(
data_string
)
if
not
found
:
raise
ValueError
(
"time data
did not match format: data=
%
s fmt=
%
s
"
%
raise
ValueError
(
"time data
%
r does not match format
%
r
"
%
(
data_string
,
format
))
if
len
(
data_string
)
!=
found
.
end
():
raise
ValueError
(
"unconverted data remains:
%
s"
%
...
...
Misc/NEWS
Dosyayı görüntüle @
11b35352
...
...
@@ -56,6 +56,9 @@ Core and builtins
Library
-------
-
Made
the
error
message
for
time
.
strptime
when
the
data
data
and
format
do
match
be
more
clear
.
-
Fix
a
bug
in
traceback
.
format_exception_only
()
that
led
to
an
error
being
raised
when
print_exc
()
was
called
without
an
exception
set
.
In
version
2.4
,
this
printed
"None"
,
restored
that
behavior
.
...
...
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