Author: Armin Rigo <[email protected]>
Branch: unicode-utf8
Changeset: r92755:0aa72483c0e8
Date: 2017-10-14 15:27 +0200
http://bitbucket.org/pypy/pypy/changeset/0aa72483c0e8/

Log:    Re-disable, turns out to be manually disabled almost everywhere else
        anyway.

diff --git a/pypy/objspace/std/listobject.py b/pypy/objspace/std/listobject.py
--- a/pypy/objspace/std/listobject.py
+++ b/pypy/objspace/std/listobject.py
@@ -1025,8 +1025,9 @@
             w_list.lstorage = strategy.erase(byteslist[:])
             return
 
-        unilist = space.listview_unicode(w_iterable)
-        if unilist is not None:
+        if False:
+          unilist = space.listview_unicode(w_iterable)
+          if unilist is not None:
             w_list.strategy = strategy = space.fromcache(UnicodeListStrategy)
             # need to copy because intlist can share with w_iterable
             w_list.lstorage = strategy.erase(unilist[:])
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to