1 """Spit out the Python reserved words table."""
7 assert elif from lambda return
8 break else global not try
9 class except if or while
10 continue exec import pass
17 words
= string
.split(raw_words
)
19 colwidth
= 1 + max(map(len, words
))
21 nrows
= (nwords
+ ncols
- 1) / ncols
22 for irow
in range(nrows
):
23 for icol
in range(ncols
):
24 i
= irow
+ icol
* nrows
29 print "%-*s" % (colwidth
, word
),