def comb(items, n=None):
if n is None:
n = len(items)
for i in range(len(items)):
v = items[i:i+1]
if n == 1:
yield v
else:
rest = items[i+1:]
for c in comb(rest, n-1):
yield v + c
easy_install tip - setting up your own repository - O'Reilly ONLamp Blog - 1 views
SciPy Course Outline - 0 views
SourceForge.net: pywinauto-users - 1 views
Overview - Sphinx Documentation - 0 views
xPyUnit -- python unit testing - 0 views
PARLEY -- python actor library - 0 views
PyInstaller Manual - 0 views
pyOSC - V2_Lab Projects - Trac - 0 views
« First
‹ Previous
201 - 220 of 350
Next ›
Last »
Showing 20▼ items per page