mirror of
https://github.com/servo/servo
synced 2026-04-28 10:27:40 +02:00
Sync WebIDL.py with gecko
This commit is contained in:
@@ -17,7 +17,7 @@ def combinations(iterable, r):
|
||||
n = len(pool)
|
||||
if r > n:
|
||||
return
|
||||
indices = range(r)
|
||||
indices = list(range(r))
|
||||
yield tuple(pool[i] for i in indices)
|
||||
while True:
|
||||
for i in reversed(range(r)):
|
||||
|
||||
Reference in New Issue
Block a user