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
53d93adc
Kaydet (Commit)
53d93adc
authored
Nis 19, 2003
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #681152: Support escaped Unicode characters in classes. Fixes #612074.
Will backport to 2.2.
üst
910ae628
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
sre_parse.py
Lib/sre_parse.py
+1
-1
test_sre.py
Lib/test/test_sre.py
+4
-0
No files found.
Lib/sre_parse.py
Dosyayı görüntüle @
53d93adc
...
...
@@ -254,7 +254,7 @@ def _class_escape(source, escape):
if
len
(
escape
)
!=
2
:
raise
error
,
"bogus escape:
%
s"
%
repr
(
"
\\
"
+
escape
)
return
LITERAL
,
atoi
(
escape
,
16
)
&
0xff
elif
str
(
escape
[
1
:
2
])
in
OCTDIGITS
:
elif
escape
[
1
:
2
]
in
OCTDIGITS
:
# octal escape (up to three digits)
while
source
.
next
in
OCTDIGITS
and
len
(
escape
)
<
5
:
escape
=
escape
+
source
.
get
()
...
...
Lib/test/test_sre.py
Dosyayı görüntüle @
53d93adc
...
...
@@ -96,6 +96,10 @@ test(r"""sre.match('.*?cd', 20000*'abc'+'de').end(0)""", 60001)
# non-simple '*?' still recurses and hits the recursion limit
test
(
r"""sre.search('(a|b)*?c', 10000*'ab'+'cd').end(0)"""
,
None
,
RuntimeError
)
# bug 612074
pat
=
u"["
+
sre
.
escape
(
u"
\u2039
"
)
+
u"]"
test
(
r"""sre.compile(pat) and 1"""
,
1
,
None
)
if
verbose
:
print
'Running tests on sre.sub'
...
...
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