[pypy-svn] r48279 - pypy/dist/pypy/interpreter

fijal at codespeak.net fijal at codespeak.net
Sun Nov 4 12:57:49 CET 2007


Author: fijal
Date: Sun Nov  4 12:57:49 2007
New Revision: 48279

Modified:
   pypy/dist/pypy/interpreter/argument.py
Log:
Mute warnings.


Modified: pypy/dist/pypy/interpreter/argument.py
==============================================================================
--- pypy/dist/pypy/interpreter/argument.py	(original)
+++ pypy/dist/pypy/interpreter/argument.py	Sun Nov  4 12:57:49 2007
@@ -145,6 +145,11 @@
         """
         args_w, kwds_w = self.unpack()
         return Arguments(self.space, args_w, kwds_w)
+
+    def unpack(self):
+        """ Purely abstract
+        """
+        raise NotImplementedError()
     
 class ArgumentsPrepended(AbstractArguments):
     def __init__(self, args, w_firstarg):



More information about the Pypy-commit mailing list