[pypy-svn] r75252 - pypy/trunk/py/_code
benjamin at codespeak.net
benjamin at codespeak.net
Thu Jun 10 20:50:14 CEST 2010
Author: benjamin
Date: Thu Jun 10 20:50:12 2010
New Revision: 75252
Modified:
pypy/trunk/py/_code/_assertionnew.py
Log:
fix assertion interpretation with pow
Modified: pypy/trunk/py/_code/_assertionnew.py
==============================================================================
--- pypy/trunk/py/_code/_assertionnew.py (original)
+++ pypy/trunk/py/_code/_assertionnew.py Thu Jun 10 20:50:12 2010
@@ -92,6 +92,7 @@
ast.LtE : "<=",
ast.Gt : ">",
ast.GtE : ">=",
+ ast.Pow : "**",
ast.Is : "is",
ast.IsNot : "is not",
ast.In : "in",
More information about the Pypy-commit
mailing list