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
01f5f624
Kaydet (Commit)
01f5f624
authored
May 17, 1994
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added -i option to ignore general regexps
üst
846c3224
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
12 deletions
+20
-12
h2py.py
Tools/scripts/h2py.py
+20
-12
No files found.
Tools/scripts/h2py.py
Dosyayı görüntüle @
01f5f624
#! /usr/local/bin/python
# Read #define's from stdin and translate to Python code on stdout.
# Very primitive: non-#define's are ignored
.
#
You will have to edit the output in some case
s.
# Very primitive: non-#define's are ignored
, as is anything that isn't
#
valid Python as it stand
s.
# If one or more filenames are given, output is written to corresponding
# filenames in the local directory, translated to all uppercase, with
# the extension replaced by ".py".
# By passing one or more options of the form "-i regular_expression"
# you can specify additional strings to be ignored. This is useful
# e.g. to ignore casts to u_long: simply specify "-i '(u_long)'".
# XXX To do:
# - turn trailing C comments into Python comments
# - turn C string quotes into Python comments
# - turn C Boolean operators "&& || !" into Python "and or not"
# - what to do about #if(def)?
# - what to do about #include?
# - what to do about macros with parameters?
# - reject definitions with semicolons in them
...
...
@@ -21,8 +25,13 @@ p_define = regex.compile('^#[\t ]*define[\t ]+\([a-zA-Z0-9_]+\)[\t ]+')
p_comment
=
regex
.
compile
(
'/
\
*
\
([^*]+
\
|
\
*+[^/]
\
)*
\
(
\
*+/
\
)?'
)
ignores
=
[
p_comment
]
def
main
():
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
''
)
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'i:'
)
for
o
,
a
in
opts
:
if
o
==
'-i'
:
ignores
.
append
(
regex
.
compile
(
a
))
if
not
args
:
args
=
[
'-'
]
for
filename
in
args
:
...
...
@@ -49,21 +58,20 @@ def process(fp, outfp):
line
=
fp
.
readline
()
if
not
line
:
break
lineno
=
lineno
+
1
if
p_define
.
match
(
line
)
>=
0
:
# gobble up continuation lines
while
line
[
-
2
:]
==
'
\\\n
'
:
nextline
=
fp
.
readline
()
if
not
nextline
:
break
lineno
=
lineno
+
1
line
=
line
+
nextline
regs
=
p_define
.
regs
a
,
b
=
regs
[
1
]
# where the macro name is
name
=
line
[
a
:
b
]
a
,
b
=
regs
[
0
]
# the whole match
body
=
line
[
b
:]
# replace comments by spaces
while
p_comment
.
search
(
body
)
>=
0
:
a
,
b
=
p_comment
.
regs
[
0
]
n
=
p_define
.
match
(
line
)
if
n
>=
0
:
name
=
p_define
.
group
(
1
)
body
=
line
[
n
:]
# replace ignored patterns by spaces
for
p
in
ignores
:
while
p
.
search
(
body
)
>=
0
:
a
,
b
=
p
.
regs
[
0
]
body
=
body
[:
a
]
+
' '
+
body
[
b
:]
stmt
=
'
%
s =
%
s
\n
'
%
(
name
,
string
.
strip
(
body
))
ok
=
0
...
...
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