diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-20 21:32:22 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-21 20:47:02 +0100 |
commit | 6f679ca7e71e881a8ee23ae3c8cb163c090f256f (patch) | |
tree | be20ffd67f8d165a2be5c0f35623a46a1d52f6cd /tools/shared.py | |
parent | 46277d084c21ff169716f556c9153fe41f4aa168 (diff) |
return chunks of text in chunkify to simplify the ap-iy
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 95ec15b9..8cbafcfa 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -1275,7 +1275,7 @@ class JCache: for ident, data in chunk: new_mapping[ident] = i cPickle.Pickler(open(chunking_file, 'wb')).dump(new_mapping) - return chunks + return [''.join([func[1] for func in chunk]) for chunk in chunks] # remove function names class JS: @staticmethod |