[pypy-svn] r11516 - pypy/dist/pypy/annotation

tismer at codespeak.net tismer at codespeak.net
Wed Apr 27 15:14:49 CEST 2005


Author: tismer
Date: Wed Apr 27 15:14:49 2005
New Revision: 11516

Modified:
   pypy/dist/pypy/annotation/binaryop.py
Log:
fixed a hard to find typo

Modified: pypy/dist/pypy/annotation/binaryop.py
==============================================================================
--- pypy/dist/pypy/annotation/binaryop.py	(original)
+++ pypy/dist/pypy/annotation/binaryop.py	Wed Apr 27 15:14:49 2005
@@ -166,7 +166,7 @@
 
     def and_((int1, int2)):
         unsigned = int1.unsigned or int2.unsigned
-        return SomeInteger(nonneg = unsigned or int1.nonneg or int1.nonneg,
+        return SomeInteger(nonneg = unsigned or int1.nonneg or int2.nonneg,
                            unsigned = unsigned)
 
     def lshift((int1, int2)):



More information about the Pypy-commit mailing list