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
d57f0476
Kaydet (Commit)
d57f0476
authored
Nis 03, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#17572: merge with 3.3.
üst
8fc16b37
0f389086
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
1 deletion
+16
-1
_strptime.py
Lib/_strptime.py
+1
-1
test_strptime.py
Lib/test/test_strptime.py
+6
-0
test_time.py
Lib/test/test_time.py
+6
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/_strptime.py
Dosyayı görüntüle @
d57f0476
...
...
@@ -326,7 +326,7 @@ def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"):
bad_directive
=
"
%
"
del
err
raise
ValueError
(
"'
%
s' is a bad directive in format '
%
s'"
%
(
bad_directive
,
format
))
(
bad_directive
,
format
))
from
None
# IndexError only occurs when the format string is "%"
except
IndexError
:
raise
ValueError
(
"stray
%%
in format '
%
s'"
%
format
)
...
...
Lib/test/test_strptime.py
Dosyayı görüntüle @
d57f0476
...
...
@@ -218,6 +218,12 @@ class StrptimeTests(unittest.TestCase):
else
:
self
.
fail
(
"'
%
s' did not raise ValueError"
%
bad_format
)
def
test_strptime_exception_context
(
self
):
# check that this doesn't chain exceptions needlessly (see #17572)
with
self
.
assertRaises
(
ValueError
)
as
e
:
_strptime
.
_strptime_time
(
''
,
'
%
D'
)
self
.
assertIs
(
e
.
exception
.
__suppress_context__
,
True
)
def
test_unconverteddata
(
self
):
# Check ValueError is raised when there is unconverted data
self
.
assertRaises
(
ValueError
,
_strptime
.
_strptime_time
,
"10 12"
,
"
%
m"
)
...
...
Lib/test/test_time.py
Dosyayı görüntüle @
d57f0476
...
...
@@ -193,6 +193,12 @@ class TimeTestCase(unittest.TestCase):
self
.
assertRaises
(
TypeError
,
time
.
strptime
,
b
'2009'
,
"
%
Y"
)
self
.
assertRaises
(
TypeError
,
time
.
strptime
,
'2009'
,
b
'
%
Y'
)
def
test_strptime_exception_context
(
self
):
# check that this doesn't chain exceptions needlessly (see #17572)
with
self
.
assertRaises
(
ValueError
)
as
e
:
time
.
strptime
(
''
,
'
%
D'
)
self
.
assertIs
(
e
.
exception
.
__suppress_context__
,
True
)
def
test_asctime
(
self
):
time
.
asctime
(
time
.
gmtime
(
self
.
t
))
...
...
Misc/NEWS
Dosyayı görüntüle @
d57f0476
...
...
@@ -304,6 +304,9 @@ Core and Builtins
Library
-------
-
Issue
#
17572
:
Avoid
chained
exceptions
while
passing
bad
directives
to
time
.
strptime
().
Initial
patch
by
Claudiu
Popa
.
-
Issue
#
14254
:
IDLE
now
handles
readline
correctly
across
shell
restarts
.
-
Issue
#
17614
:
IDLE
no
longer
raises
exception
when
quickly
closing
a
file
.
...
...
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