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
a53f30ba
Kaydet (Commit)
a53f30ba
authored
Eyl 14, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
nannified
üst
4e96ec6a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
nm2def.py
Tools/scripts/nm2def.py
+17
-17
No files found.
Tools/scripts/nm2def.py
Dosyayı görüntüle @
a53f30ba
...
...
@@ -45,15 +45,15 @@ def symbols(lib=PYTHONLIB,types=('T','C','D')):
lines
=
map
(
string
.
strip
,
lines
)
symbols
=
{}
for
line
in
lines
:
if
len
(
line
)
==
0
or
':'
in
line
:
continue
items
=
string
.
split
(
line
)
if
len
(
items
)
!=
3
:
continue
address
,
type
,
name
=
items
if
type
not
in
types
:
continue
symbols
[
name
]
=
address
,
type
if
len
(
line
)
==
0
or
':'
in
line
:
continue
items
=
string
.
split
(
line
)
if
len
(
items
)
!=
3
:
continue
address
,
type
,
name
=
items
if
type
not
in
types
:
continue
symbols
[
name
]
=
address
,
type
return
symbols
def
export_list
(
symbols
):
...
...
@@ -61,10 +61,10 @@ def export_list(symbols):
data
=
[]
code
=
[]
for
name
,(
addr
,
type
)
in
symbols
.
items
():
if
type
in
(
'C'
,
'D'
):
data
.
append
(
'
\t
'
+
name
)
else
:
code
.
append
(
'
\t
'
+
name
)
if
type
in
(
'C'
,
'D'
):
data
.
append
(
'
\t
'
+
name
)
else
:
code
.
append
(
'
\t
'
+
name
)
data
.
sort
()
data
.
append
(
''
)
code
.
sort
()
...
...
@@ -84,10 +84,10 @@ SPECIALS = (
def
filter_Python
(
symbols
,
specials
=
SPECIALS
):
for
name
in
symbols
.
keys
():
if
name
[:
2
]
==
'Py'
or
name
[:
3
]
==
'_Py'
:
pass
elif
name
not
in
specials
:
del
symbols
[
name
]
if
name
[:
2
]
==
'Py'
or
name
[:
3
]
==
'_Py'
:
pass
elif
name
not
in
specials
:
del
symbols
[
name
]
def
main
():
...
...
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