[pypy-svn] r48281 - pypy/dist/pypy/interpreter
fijal at codespeak.net
fijal at codespeak.net
Sun Nov 4 13:04:27 CET 2007
Author: fijal
Date: Sun Nov 4 13:04:26 2007
New Revision: 48281
Modified:
pypy/dist/pypy/interpreter/argument.py
Log:
Another purely-abstract methods
Modified: pypy/dist/pypy/interpreter/argument.py
==============================================================================
--- pypy/dist/pypy/interpreter/argument.py (original)
+++ pypy/dist/pypy/interpreter/argument.py Sun Nov 4 13:04:26 2007
@@ -155,7 +155,17 @@
""" Purely abstract
"""
raise NotImplementedError()
+
+ def _match_signature(self, scope_w, argnames, has_vararg=False, has_kwarg=False, defaults_w=[], blindargs=0, extravarargs=None):
+ """ Purely abstract
+ """
+ raise NotImplementedError()
+ def fixedunpack(self, argcount):
+ """ Purely abstract
+ """
+ raise NotImplementedError()
+
class ArgumentsPrepended(AbstractArguments):
def __init__(self, args, w_firstarg):
self.space = args.space
More information about the pypy-svn
mailing list