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
953c6f50
Kaydet (Commit)
953c6f50
authored
Agu 29, 2003
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make sure parentheses are escaped when used in the format string.
Closes bug #796149 . Will be backported.
üst
6676f6ed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
_strptime.py
Lib/_strptime.py
+1
-1
test_strptime.py
Lib/test/test_strptime.py
+9
-0
No files found.
Lib/_strptime.py
Dosyayı görüntüle @
953c6f50
...
...
@@ -249,7 +249,7 @@ class TimeRE(dict):
processed_format
=
''
# The sub() call escapes all characters that might be misconstrued
# as regex syntax.
regex_chars
=
re_compile
(
r"([\\.^$*+?{}\[\]|])"
)
regex_chars
=
re_compile
(
r"([\\.^$*+?
\(\)
{}\[\]|])"
)
format
=
regex_chars
.
sub
(
r"\\\1"
,
format
)
whitespace_replacement
=
re_compile
(
'
\
s+'
)
format
=
whitespace_replacement
.
sub
(
'
\
s*'
,
format
)
...
...
Lib/test/test_strptime.py
Dosyayı görüntüle @
953c6f50
...
...
@@ -333,6 +333,15 @@ class StrptimeTests(unittest.TestCase):
"Default values for strptime() are incorrect;"
"
%
s !=
%
s"
%
(
strp_output
,
defaults
))
def
test_escaping
(
self
):
# Make sure all characters that have regex significance are escaped.
# Parentheses are in a purposeful order; will cause an error of
# unbalanced parentheses when the regex is compiled if they are not
# escaped.
# Test instigated by bug #796149 .
need_escaping
=
".^$*+?{}
\
[]|)("
self
.
failUnless
(
_strptime
.
strptime
(
need_escaping
,
need_escaping
))
class
Strptime12AMPMTests
(
unittest
.
TestCase
):
"""Test a _strptime regression in '
%
I
%
p' at 12 noon (12 PM)"""
...
...
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