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

pedronis at codespeak.net pedronis at codespeak.net
Sat Jul 30 21:36:32 CEST 2005


Author: pedronis
Date: Sat Jul 30 21:36:30 2005
New Revision: 15438

Modified:
   pypy/dist/pypy/interpreter/argument.py
Log:
avoid a method demoting warning.



Modified: pypy/dist/pypy/interpreter/argument.py
==============================================================================
--- pypy/dist/pypy/interpreter/argument.py	(original)
+++ pypy/dist/pypy/interpreter/argument.py	Sat Jul 30 21:36:30 2005
@@ -266,7 +266,9 @@
 #
 
 class ArgErr(Exception):
-    pass
+    
+    def getmsg(self, args, fnname):
+        raise NotImplementedError
 
 class ArgErrCount(ArgErr):
 



More information about the Pypy-commit mailing list