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
19f977ba
Kaydet (Commit)
19f977ba
authored
Eyl 24, 2000
tarafından
Fredrik Lundh
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- don't hang if group id is followed by whitespace (closes bug #114660)
üst
96753b34
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
sre_parse.py
Lib/sre_parse.py
+1
-1
re_tests.py
Lib/test/re_tests.py
+0
-1
test_sre.py
Lib/test/test_sre.py
+3
-0
No files found.
Lib/sre_parse.py
Dosyayı görüntüle @
19f977ba
...
...
@@ -634,7 +634,7 @@ def parse_template(source, pattern):
while
1
:
group
=
_group
(
this
,
pattern
.
groups
+
1
)
if
group
:
if
(
not
s
.
next
or
if
(
s
.
next
not
in
DIGITS
or
not
_group
(
this
+
s
.
next
,
pattern
.
groups
+
1
)):
code
=
MARK
,
int
(
group
)
break
...
...
Lib/test/re_tests.py
Dosyayı görüntüle @
19f977ba
#!/usr/bin/env python
# -*- mode: python -*-
# $Id$
# Re test suite and benchmark suite v1.5
...
...
Lib/test/test_sre.py
Dosyayı görüntüle @
19f977ba
...
...
@@ -114,6 +114,9 @@ test(r"""sre.sub(r'^\s*', 'X', 'test')""", 'Xtest')
test
(
r"""sre.sub(r'a', 'b', 'aaaaa')"""
,
'bbbbb'
)
test
(
r"""sre.sub(r'a', 'b', 'aaaaa', 1)"""
,
'baaaa'
)
# bug 114660
test
(
r"""sre.sub(r'(\S)\s+(\S)', r'\1 \2', 'hello there')"""
,
'hello there'
)
if
verbose
:
print
'Running tests on symbolic references'
...
...
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