Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f595c854
Commit
f595c854
authored
Jan 07, 2006
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix icc warnings: single bit fields should be unsigned
parent
82f43306
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
Include/symtable.h
Include/symtable.h
+7
-7
No files found.
Include/symtable.h
View file @
f595c854
...
...
@@ -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