[pypy-svn] r8560 - pypy/dist/pypy/objspace/std

arigo at codespeak.net arigo at codespeak.net
Tue Jan 25 14:56:55 CET 2005


Author: arigo
Date: Tue Jan 25 14:56:55 2005
New Revision: 8560

Modified:
   pypy/dist/pypy/objspace/std/longobject.py
Log:
Hum.


Modified: pypy/dist/pypy/objspace/std/longobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/longobject.py	(original)
+++ pypy/dist/pypy/objspace/std/longobject.py	Tue Jan 25 14:56:55 2005
@@ -148,7 +148,7 @@
 def pow__Long_Long_Long(space, w_long1, w_long2, w_long3):
     x = w_long1.longval
     y = w_long2.longval
-    z = w_long2.longval
+    z = w_long3.longval
     t = pow(x, y, z)
     return W_LongObject(space, t)
 



More information about the Pypy-commit mailing list