Open GoogleCodeExporter opened 9 years ago
Hi. I just faced this problem in a completely different project
(pysparse-1.3-dev) and fixed it by modifying those lines based on instructions
in this url: http://python3porting.com/cextensions.html
For you case. Replace:
Bitarraytype.ob_type = &PyType_Type;
with:
Py_TYPE(&Bitarraytype) = &PyType_Type;
and this should compile the code (of course you'll have to make this
modification for all lines of this kind). Mine compiles although I haven't
tested the installed pysparse-1.3-dev package yet.
Original comment by physi...@gmail.com
on 14 Apr 2015 at 10:59
Original issue reported on code.google.com by
lmet...@gmail.com
on 21 Mar 2015 at 7:57