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
be4de52f
Kaydet (Commit)
be4de52f
authored
Eyl 28, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed a code for suport Python version <2.2.
üst
20b39b27
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
re.py
Lib/re.py
+12
-11
No files found.
Lib/re.py
Dosyayı görüntüle @
be4de52f
...
...
@@ -124,10 +124,13 @@ import sre_compile
import
sre_parse
# public symbols
__all__
=
[
"match"
,
"fullmatch"
,
"search"
,
"sub"
,
"subn"
,
"split"
,
"findall"
,
"compile"
,
"purge"
,
"template"
,
"escape"
,
"A"
,
"I"
,
"L"
,
"M"
,
"S"
,
"X"
,
"U"
,
"ASCII"
,
"IGNORECASE"
,
"LOCALE"
,
"MULTILINE"
,
"DOTALL"
,
"VERBOSE"
,
"UNICODE"
,
"error"
]
__all__
=
[
"match"
,
"fullmatch"
,
"search"
,
"sub"
,
"subn"
,
"split"
,
"findall"
,
"finditer"
,
"compile"
,
"purge"
,
"template"
,
"escape"
,
"error"
,
"A"
,
"I"
,
"L"
,
"M"
,
"S"
,
"X"
,
"U"
,
"ASCII"
,
"IGNORECASE"
,
"LOCALE"
,
"MULTILINE"
,
"DOTALL"
,
"VERBOSE"
,
"UNICODE"
,
]
__version__
=
"2.2.1"
...
...
@@ -205,14 +208,12 @@ def findall(pattern, string, flags=0):
Empty matches are included in the result."""
return
_compile
(
pattern
,
flags
)
.
findall
(
string
)
if
sys
.
hexversion
>=
0x02020000
:
__all__
.
append
(
"finditer"
)
def
finditer
(
pattern
,
string
,
flags
=
0
):
"""Return an iterator over all non-overlapping matches in the
string. For each match, the iterator returns a match object.
def
finditer
(
pattern
,
string
,
flags
=
0
):
"""Return an iterator over all non-overlapping matches in the
string. For each match, the iterator returns a match object.
Empty matches are included in the result."""
return
_compile
(
pattern
,
flags
)
.
finditer
(
string
)
Empty matches are included in the result."""
return
_compile
(
pattern
,
flags
)
.
finditer
(
string
)
def
compile
(
pattern
,
flags
=
0
):
"Compile a regular expression pattern, returning a pattern object."
...
...
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