Author: Armin Rigo <[email protected]>
Branch:
Changeset: r49490:afe73da501bc
Date: 2011-11-17 09:50 +0000
http://bitbucket.org/pypy/pypy/changeset/afe73da501bc/
Log: Fix for test_zrpy_releasegil.
diff --git a/pypy/rpython/lltypesystem/rffi.py
b/pypy/rpython/lltypesystem/rffi.py
--- a/pypy/rpython/lltypesystem/rffi.py
+++ b/pypy/rpython/lltypesystem/rffi.py
@@ -864,7 +864,7 @@
except AttributeError:
if not isinstance(tp, lltype.Primitive):
unsigned = False
- elif tp in (lltype.Signed, FLOAT, DOUBLE):
+ elif tp in (lltype.Signed, FLOAT, DOUBLE, llmemory.Address):
unsigned = False
elif tp in (lltype.Char, lltype.UniChar, lltype.Bool):
unsigned = True
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit