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
39a5ff6c
Commit
39a5ff6c
authored
Apr 02, 1997
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added assert grammar.
parent
db80b416
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
555 additions
and
526 deletions
+555
-526
Include/graminit.h
Include/graminit.h
+33
-32
Python/graminit.c
Python/graminit.c
+522
-494
No files found.
Include/graminit.h
View file @
39a5ff6c
...
...
@@ -22,35 +22,36 @@
#define dotted_name 277
#define global_stmt 278
#define exec_stmt 279
#define compound_stmt 280
#define if_stmt 281
#define while_stmt 282
#define for_stmt 283
#define try_stmt 284
#define except_clause 285
#define suite 286
#define test 287
#define and_test 288
#define not_test 289
#define comparison 290
#define comp_op 291
#define expr 292
#define xor_expr 293
#define and_expr 294
#define shift_expr 295
#define arith_expr 296
#define term 297
#define factor 298
#define power 299
#define atom 300
#define lambdef 301
#define trailer 302
#define subscriptlist 303
#define subscript 304
#define sliceop 305
#define exprlist 306
#define testlist 307
#define dictmaker 308
#define classdef 309
#define arglist 310
#define argument 311
#define assert_stmt 280
#define compound_stmt 281
#define if_stmt 282
#define while_stmt 283
#define for_stmt 284
#define try_stmt 285
#define except_clause 286
#define suite 287
#define test 288
#define and_test 289
#define not_test 290
#define comparison 291
#define comp_op 292
#define expr 293
#define xor_expr 294
#define and_expr 295
#define shift_expr 296
#define arith_expr 297
#define term 298
#define factor 299
#define power 300
#define atom 301
#define lambdef 302
#define trailer 303
#define subscriptlist 304
#define subscript 305
#define sliceop 306
#define exprlist 307
#define testlist 308
#define dictmaker 309
#define classdef 310
#define arglist 311
#define argument 312
Python/graminit.c
View file @
39a5ff6c
This diff is collapsed.
Click to expand it.
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