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
1bb515b0
Kaydet (Commit)
1bb515b0
authored
Mar 18, 2001
tarafından
Eric S. Raymond
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Teach Tools/freeze/makeconfig.py and Tools/freeze/parsesetup.py to use
the re package rather than the obsolete regex.
üst
0f33604e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
makeconfig.py
Tools/freeze/makeconfig.py
+3
-3
parsesetup.py
Tools/freeze/parsesetup.py
+9
-7
No files found.
Tools/freeze/makeconfig.py
Dosyayı görüntüle @
1bb515b0
import
re
gex
import
re
# Write the config.c file
...
...
@@ -6,8 +6,8 @@ import regex
never
=
[
'marshal'
,
'__main__'
,
'__builtin__'
,
'sys'
,
'exceptions'
]
def
makeconfig
(
infp
,
outfp
,
modules
,
with_ifdef
=
0
):
m1
=
re
gex
.
compile
(
'-- ADDMODULE MARKER 1 --'
)
m2
=
re
gex
.
compile
(
'-- ADDMODULE MARKER 2 --'
)
m1
=
re
.
compile
(
'-- ADDMODULE MARKER 1 --'
)
m2
=
re
.
compile
(
'-- ADDMODULE MARKER 2 --'
)
while
1
:
line
=
infp
.
readline
()
if
not
line
:
break
...
...
Tools/freeze/parsesetup.py
Dosyayı görüntüle @
1bb515b0
# Parse Makefiles and Python Setup(.in) files.
import
re
gex
import
re
import
string
...
...
@@ -8,7 +8,7 @@ import string
# Return a dictionary mapping names to values.
# May raise IOError.
makevardef
=
re
gex
.
compile
(
'^
\
([a-zA-Z0-9_]+
\
)[
\t
]*=
\
(.*
\
)'
)
makevardef
=
re
.
compile
(
'^([a-zA-Z0-9_]+)[
\t
]*=(.*
)'
)
def
getmakevars
(
filename
):
variables
=
{}
...
...
@@ -18,9 +18,10 @@ def getmakevars(filename):
line
=
fp
.
readline
()
if
not
line
:
break
if
makevardef
.
match
(
line
)
<
0
:
matchobj
=
makevardef
.
match
(
line
)
if
not
matchobj
:
continue
name
,
value
=
makevardef
.
group
(
1
,
2
)
(
name
,
value
)
=
matchobj
.
group
(
1
,
2
)
# Strip trailing comment
i
=
string
.
find
(
value
,
'#'
)
if
i
>=
0
:
...
...
@@ -37,7 +38,7 @@ def getmakevars(filename):
# definitions, the second mapping variable names to their values.
# May raise IOError.
setupvardef
=
re
gex
.
compile
(
'^
\
([a-zA-Z0-9_]+
\
)=
\
(.*
\
)'
)
setupvardef
=
re
.
compile
(
'^([a-zA-Z0-9_]+)=(.*
)'
)
def
getsetupinfo
(
filename
):
modules
=
{}
...
...
@@ -52,8 +53,9 @@ def getsetupinfo(filename):
i
=
string
.
find
(
line
,
'#'
)
if
i
>=
0
:
line
=
line
[:
i
]
if
setupvardef
.
match
(
line
)
>=
0
:
name
,
value
=
setupvardef
.
group
(
1
,
2
)
matchobj
=
setupvardef
.
match
(
line
)
if
matchobj
:
(
name
,
value
)
=
matchobj
.
group
(
1
,
2
)
variables
[
name
]
=
string
.
strip
(
value
)
else
:
words
=
string
.
split
(
line
)
...
...
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