[pypy-svn] r48280 - pypy/dist/pypy/interpreter
fijal at codespeak.net
fijal at codespeak.net
Sun Nov 4 12:59:44 CET 2007
Author: fijal
Date: Sun Nov 4 12:59:44 2007
New Revision: 48280
Modified:
pypy/dist/pypy/interpreter/argument.py
Log:
Another purely abstract method
Modified: pypy/dist/pypy/interpreter/argument.py
==============================================================================
--- pypy/dist/pypy/interpreter/argument.py (original)
+++ pypy/dist/pypy/interpreter/argument.py Sun Nov 4 12:59:44 2007
@@ -150,6 +150,11 @@
""" Purely abstract
"""
raise NotImplementedError()
+
+ def firstarg(self):
+ """ Purely abstract
+ """
+ raise NotImplementedError()
class ArgumentsPrepended(AbstractArguments):
def __init__(self, args, w_firstarg):
More information about the pypy-svn
mailing list