Author: Richard Plangger <[email protected]>
Branch: s390x-backend
Changeset: r80843:f7d1843208b9
Date: 2015-11-23 08:17 +0100
http://bitbucket.org/pypy/pypy/changeset/f7d1843208b9/
Log: reverted change
diff --git a/rpython/annotator/model.py b/rpython/annotator/model.py
--- a/rpython/annotator/model.py
+++ b/rpython/annotator/model.py
@@ -461,7 +461,7 @@
def intersection(self, other):
assert isinstance(other, SomeExceptCase)
- classdefs = {c:None for c in self.classdefs if
c.issubclass(other.case)}
+ classdefs = {c for c in self.classdefs if c.issubclass(other.case)}
if classdefs:
return SomeException(classdefs)
else:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit