Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r71782:3e6c1e7aaacb
Date: 2014-05-29 12:22 -0700
http://bitbucket.org/pypy/pypy/changeset/3e6c1e7aaacb/

Log:    forgot to re-enable set's ByteStrategy, fix

diff --git a/pypy/objspace/std/setobject.py b/pypy/objspace/std/setobject.py
--- a/pypy/objspace/std/setobject.py
+++ b/pypy/objspace/std/setobject.py
@@ -1584,8 +1584,6 @@
         return
 
     # check for strings
-    # XXX:
-    """
     for w_item in iterable_w:
         if type(w_item) is not W_BytesObject:
             break
@@ -1593,7 +1591,6 @@
         w_set.strategy = space.fromcache(BytesSetStrategy)
         w_set.sstorage = w_set.strategy.get_storage_from_list(iterable_w)
         return
-        """
 
     # check for unicode
     for w_item in iterable_w:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to