projects
/
platform
/
upstream
/
python-cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7bbd35
)
fix pure Python test
author
Stefan Behnel
<stefan_ml@behnel.de>
Tue, 30 Oct 2012 16:12:22 +0000
(17:12 +0100)
committer
Stefan Behnel
<stefan_ml@behnel.de>
Tue, 30 Oct 2012 16:12:22 +0000
(17:12 +0100)
--HG--
extra : rebase_source :
8127709bcb8f2d8f6cfd91a1e46b16dcb7734765
tests/run/pure_py.py
patch
|
blob
|
history
diff --git
a/tests/run/pure_py.py
b/tests/run/pure_py.py
index
2d34431
..
4b28608
100644
(file)
--- a/
tests/run/pure_py.py
+++ b/
tests/run/pure_py.py
@@
-39,7
+39,7
@@
def test_declare(n):
y = cython.declare(cython.int, n)
if cython.compiled:
cython.declare(xx=cython.int, yy=cython.long)
- i = sizeof(xx)
+ i =
cython.
sizeof(xx)
ptr = cython.declare(cython.p_int, cython.address(y))
return y, ptr[0]