projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8dc8a61
)
Had to also put the type code in for the signed case.
author
William Stein
<wstein@gmail.com>
Fri, 3 Nov 2006 23:41:38 +0000
(15:41 -0800)
committer
William Stein
<wstein@gmail.com>
Fri, 3 Nov 2006 23:41:38 +0000
(15:41 -0800)
Cython/Compiler/PyrexTypes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/PyrexTypes.py
b/Cython/Compiler/PyrexTypes.py
index c3ea8343b547a4becc026c2031d3b6b9042da5d0..34a63ce36a71a0208f18342b38ffaad40ca59dfe 100644
(file)
--- a/
Cython/Compiler/PyrexTypes.py
+++ b/
Cython/Compiler/PyrexTypes.py
@@
-294,7
+294,7
@@
class CNumericType(CType):
parsetuple_formats = ( # rank -> format
"?HIkKn???", # unsigned
- "chilL
?
fd?", # signed
+ "chilL
n
fd?", # signed
)
def __init__(self, rank, signed = 1, pymemberdef_typecode = None):