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
934a4cea
Kaydet (Commit)
934a4cea
authored
Eyl 12, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Show names of locals in disco (Ka-Ping Yee)
üst
dc082eba
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
dis.py
Lib/dis.py
+6
-0
No files found.
Lib/dis.py
Dosyayı görüntüle @
934a4cea
...
...
@@ -40,6 +40,8 @@ def disassemble(co, lasti):
print
'('
+
co
.
co_names
[
oparg
]
+
')'
,
elif
op
in
hasjrel
:
print
'(to '
+
`i + oparg`
+
')'
,
elif
op
in
haslocal
:
print
'('
+
co
.
co_varnames
[
oparg
]
+
')'
,
print
def
findlabels
(
code
):
...
...
@@ -67,6 +69,7 @@ hasconst = []
hasname
=
[]
hasjrel
=
[]
hasjabs
=
[]
haslocal
=
[]
opname
=
[
''
]
*
256
for
op
in
range
(
256
):
opname
[
op
]
=
'<'
+
`op`
+
'>'
...
...
@@ -183,8 +186,11 @@ jrel_op('SETUP_FINALLY', 122) # ""
def_op
(
'RESERVE_FAST'
,
123
)
# Number of local variables
hasconst
.
append
(
123
)
def_op
(
'LOAD_FAST'
,
124
)
# Local variable number
haslocal
.
append
(
124
)
def_op
(
'STORE_FAST'
,
125
)
# Local variable number
haslocal
.
append
(
125
)
def_op
(
'DELETE_FAST'
,
126
)
# Local variable number
haslocal
.
append
(
126
)
def_op
(
'SET_LINENO'
,
127
)
# Current line number
SET_LINENO
=
127
...
...
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