[pypy-svn] r78096 - pypy/trunk/pypy/module/_rawffi
arigo at codespeak.net
arigo at codespeak.net
Tue Oct 19 18:41:14 CEST 2010
Author: arigo
Date: Tue Oct 19 18:41:12 2010
New Revision: 78096
Modified:
pypy/trunk/pypy/module/_rawffi/structure.py
Log:
We don't actually need to store this as a field.
Modified: pypy/trunk/pypy/module/_rawffi/structure.py
==============================================================================
--- pypy/trunk/pypy/module/_rawffi/structure.py (original)
+++ pypy/trunk/pypy/module/_rawffi/structure.py Tue Oct 19 18:41:12 2010
@@ -73,7 +73,6 @@
self.alignment = alignment
self.ll_positions = pos
self.name_to_index = name_to_index
- self.is_union = is_union
def allocate(self, space, length, autofree=False):
# length is ignored!
More information about the Pypy-commit
mailing list