[pypy-svn] r36913 - pypy/branch/ast-experiments/pypy/interpreter/pyparser

syt at codespeak.net syt at codespeak.net
Thu Jan 18 10:07:03 CET 2007


Author: syt
Date: Thu Jan 18 10:07:03 2007
New Revision: 36913

Modified:
   pypy/branch/ast-experiments/pypy/interpreter/pyparser/grammar.py
Log:
make abstract builder wrappable

Modified: pypy/branch/ast-experiments/pypy/interpreter/pyparser/grammar.py
==============================================================================
--- pypy/branch/ast-experiments/pypy/interpreter/pyparser/grammar.py	(original)
+++ pypy/branch/ast-experiments/pypy/interpreter/pyparser/grammar.py	Thu Jan 18 10:07:03 2007
@@ -103,7 +103,10 @@
     restore states"""
     pass
 
-class AbstractBuilder(object):
+from pypy.interpreter.baseobjspace import Wrappable
+
+
+class AbstractBuilder(Wrappable):
     """Abstract base class for builder objects"""
     def __init__(self, parser, debug=0 ):
         # This attribute is here for convenience



More information about the Pypy-commit mailing list