diff options
author | Simon Warta <[email protected]> | 2017-04-03 23:32:42 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-04-04 18:06:21 +0200 |
commit | 51544a6f9af7a66e7dee05322b3a2364decff50a (patch) | |
tree | 06401cc1c76495887d0da8e5888ed1f367b5ba35 | |
parent | d4c3f6a3409ce0ad6520c13813310f6cb523fe6f (diff) |
configure: remove unused chunks()
-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): """ |