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
657d06b1
Kaydet (Commit)
657d06b1
authored
Eki 26, 2013
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
just return toplevel symbol table rather than all blocks (closes #19393)
üst
70f213ab
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
symtable.py
Lib/symtable.py
+1
-4
NEWS
Misc/NEWS
+3
-0
symtablemodule.c
Modules/symtablemodule.c
+1
-1
No files found.
Lib/symtable.py
Dosyayı görüntüle @
657d06b1
...
...
@@ -10,10 +10,7 @@ import weakref
__all__
=
[
"symtable"
,
"SymbolTable"
,
"Class"
,
"Function"
,
"Symbol"
]
def
symtable
(
code
,
filename
,
compile_type
):
raw
=
_symtable
.
symtable
(
code
,
filename
,
compile_type
)
for
top
in
raw
.
itervalues
():
if
top
.
name
==
'top'
:
break
top
=
_symtable
.
symtable
(
code
,
filename
,
compile_type
)
return
_newSymbolTable
(
top
,
filename
)
class
SymbolTableFactory
:
...
...
Misc/NEWS
Dosyayı görüntüle @
657d06b1
...
...
@@ -40,6 +40,9 @@ Core and Builtins
Library
-------
-
Issue
#
19393
:
Fix
symtable
.
symtable
function
to
not
be
confused
when
there
are
functions
or
classes
named
"top"
.
-
Issue
#
19327
:
Fixed
the
working
of
regular
expressions
with
too
big
charset
.
-
Issue
#
19350
:
Increasing
the
test
coverage
of
macurl2path
.
Patch
by
Colin
...
...
Modules/symtablemodule.c
Dosyayı görüntüle @
657d06b1
...
...
@@ -33,7 +33,7 @@ symtable_symtable(PyObject *self, PyObject *args)
st
=
Py_SymtableString
(
str
,
filename
,
start
);
if
(
st
==
NULL
)
return
NULL
;
t
=
st
->
st_symbols
;
t
=
(
PyObject
*
)
st
->
st_top
;
Py_INCREF
(
t
);
PyMem_Free
((
void
*
)
st
->
st_future
);
PySymtable_Free
(
st
);
...
...
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