summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2000-08-12 18:09:51 +0000
committerSkip Montanaro <skip@pobox.com>2000-08-12 18:09:51 +0000
commitdd090c340ef908c8051372761dd265b3f7d92180 (patch)
tree93b0613ce213a0e33a5055e626015ab29f528fae /Include
parentbe544c3f10af27590163f23521c582dd9eb42c2c (diff)
downloadcpython-dd090c340ef908c8051372761dd265b3f7d92180.tar.gz
list comprehensions. see
http://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470 for details.
Diffstat (limited to 'Include')
-rw-r--r--Include/graminit.h26
1 files changed, 15 insertions, 11 deletions
diff --git a/Include/graminit.h b/Include/graminit.h
index ba66456c11..8bb17504bc 100644
--- a/Include/graminit.h
+++ b/Include/graminit.h
@@ -44,14 +44,18 @@
#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
+#define listmaker 302
+#define lambdef 303
+#define trailer 304
+#define subscriptlist 305
+#define subscript 306
+#define sliceop 307
+#define exprlist 308
+#define testlist 309
+#define dictmaker 310
+#define classdef 311
+#define arglist 312
+#define argument 313
+#define list_iter 314
+#define list_for 315
+#define list_if 316