[pypy-commit] pypy default: remove unrolling_iterable, causes issues on py3.5-memoryview

plan_rich pypy.commits at gmail.com
Tue Aug 30 04:13:48 EDT 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: 
Changeset: r86722:372a9d7304c9
Date: 2016-08-30 10:10 +0200
http://bitbucket.org/pypy/pypy/changeset/372a9d7304c9/

Log:	remove unrolling_iterable, causes issues on py3.5-memoryview

diff --git a/rpython/rlib/rjitlog/rjitlog.py b/rpython/rlib/rjitlog/rjitlog.py
--- a/rpython/rlib/rjitlog/rjitlog.py
+++ b/rpython/rlib/rjitlog/rjitlog.py
@@ -430,9 +430,8 @@
 
 def encode_merge_point(log, compressor, values):
     line = []
-    unrolled = unrolling_iterable(values)
     i = 0
-    for value in unrolled:
+    for value in values:
         line.append(value.encode(log,i,compressor))
         i += 1
     return ''.join(line)


More information about the pypy-commit mailing list