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
8208b646
Kaydet (Commit)
8208b646
authored
Ock 07, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix icc warnings: single bit fields should be unsigned
üst
daf595f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
symtable.h
Include/symtable.h
+7
-7
No files found.
Include/symtable.h
Dosyayı görüntüle @
8208b646
...
...
@@ -31,13 +31,13 @@ typedef struct _symtable_entry {
PyObject
*
ste_children
;
/* list of child ids */
_Py_block_ty
ste_type
;
/* module, class, or function */
int
ste_unoptimized
;
/* false if namespace is optimized */
int
ste_nested
:
1
;
/* true if block is nested */
int
ste_free
:
1
;
/* true if block has free variables */
int
ste_child_free
:
1
;
/* true if a child block has free variable
s,
including free refs to globals */
int
ste_generator
:
1
;
/* true if namespace is a generator */
int
ste_varargs
:
1
;
/* true if block has varargs */
int
ste_varkeywords
:
1
;
/* true if block has varkeywords */
unsigned
ste_nested
:
1
;
/* true if block is nested */
unsigned
ste_free
:
1
;
/* true if block has free variables */
unsigned
ste_child_free
:
1
;
/* true if a child block has free var
s,
including free refs to globals */
unsigned
ste_generator
:
1
;
/* true if namespace is a generator */
unsigned
ste_varargs
:
1
;
/* true if block has varargs */
unsigned
ste_varkeywords
:
1
;
/* true if block has varkeywords */
int
ste_lineno
;
/* first line of block */
int
ste_opt_lineno
;
/* lineno of last exec or import * */
int
ste_tmpname
;
/* counter for listcomp temp vars */
...
...
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