Author: Carl Friedrich Bolz <[email protected]>
Branch:
Changeset: r55859:72d331ebfb9d
Date: 2012-06-19 23:36 +0200
http://bitbucket.org/pypy/pypy/changeset/72d331ebfb9d/
Log: kill dead code, mixins are now done differently
diff --git a/pypy/annotation/description.py b/pypy/annotation/description.py
--- a/pypy/annotation/description.py
+++ b/pypy/annotation/description.py
@@ -514,9 +514,9 @@
continue
self.add_source_attribute(name, value, mixin=True)
- def add_sources_for_class(self, cls, mixin=False):
+ def add_sources_for_class(self, cls):
for name, value in cls.__dict__.items():
- self.add_source_attribute(name, value, mixin)
+ self.add_source_attribute(name, value)
def getallclassdefs(self):
return self._classdefs.values()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit