Author: Lukas Diekmann <lukas.diekm...@uni-duesseldorf.de>
Branch: set-strategies
Changeset: r49200:3727073215e7
Date: 2011-08-23 14:03 +0200
http://bitbucket.org/pypy/pypy/changeset/3727073215e7/

Log:    removed old comment

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
@@ -456,7 +456,6 @@
         if w_set.strategy is w_other.strategy:
             self.symmetric_difference_update_match(w_set, w_other)
             return
-        #XXX no wrapping when strategies are equal
         newsetdata = newset(self.space)
         for w_key in w_set.getkeys():
             if not w_other.has_key(w_key):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to