update from Atlas

This commit is contained in:
Luciano Ramalho
2015-02-27 20:34:12 -03:00
parent 304d628066
commit 39e87de5cd
25 changed files with 2097 additions and 46 deletions

5
control/kwcombos.py Normal file
View File

@@ -0,0 +1,5 @@
from keyword import kwlist
from itertools import combinations
for combo in combinations(kwlist, 2):
print(*combo)