diff options
-rwxr-xr-x | configure.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/configure.py b/configure.py index 04bb918fd..7eaee3608 100755 --- a/configure.py +++ b/configure.py @@ -47,10 +47,6 @@ class ConfigureError(Exception): def flatten(l): return sum(l, []) -def chunks(l, n): - for i in range(0, len(l), n): - yield l[i:i+n] - class Version(object): """ |