[pypy-svn] r7485 - pypy/trunk/src/pypy/annotation

hpk at codespeak.net hpk at codespeak.net
Sat Nov 20 10:15:00 CET 2004


Author: hpk
Date: Sat Nov 20 10:15:00 2004
New Revision: 7485

Modified:
   pypy/trunk/src/pypy/annotation/model.py
Log:
argl: fixed a syntax error ... 


Modified: pypy/trunk/src/pypy/annotation/model.py
==============================================================================
--- pypy/trunk/src/pypy/annotation/model.py	(original)
+++ pypy/trunk/src/pypy/annotation/model.py	Sat Nov 20 10:15:00 2004
@@ -325,7 +325,7 @@
     for x in l1: 
         if x in l2: 
             return x 
-    assert 0, "couldn't get to commonbase of %r and %r" % (cls1, cls2))
+    assert 0, "couldn't get to commonbase of %r and %r" % (cls1, cls2)
 
 def missing_operation(cls, name):
     def default_op(*args):



More information about the Pypy-commit mailing list