Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
ac5cf0b1
Commit
ac5cf0b1
authored
Oct 20, 2009
by
Dag Sverre Seljebotn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
numpy.pxd: npy_complexX should be the C structs used by C NumPy, not Cython complex
parent
5a1d2cb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
6 deletions
+20
-6
Cython/Includes/numpy.pxd
Cython/Includes/numpy.pxd
+20
-6
No files found.
Cython/Includes/numpy.pxd
View file @
ac5cf0b1
...
...
@@ -293,12 +293,6 @@ cdef extern from "numpy/arrayobject.h":
ctypedef
long
double
npy_float96
ctypedef
long
double
npy_float128
ctypedef
float
complex
npy_complex64
ctypedef
double
complex
npy_complex128
ctypedef
long
double
complex
npy_complex120
ctypedef
long
double
complex
npy_complex192
ctypedef
long
double
complex
npy_complex256
ctypedef
struct
npy_cfloat
:
double
real
double
imag
...
...
@@ -311,6 +305,26 @@ cdef extern from "numpy/arrayobject.h":
double
real
double
imag
ctypedef
struct
npy_complex64
:
double
real
double
imag
ctypedef
struct
npy_complex128
:
double
real
double
imag
ctypedef
struct
npy_complex160
:
double
real
double
imag
ctypedef
struct
npy_complex192
:
double
real
double
imag
ctypedef
struct
npy_complex256
:
double
real
double
imag
ctypedef
struct
PyArray_Dims
:
npy_intp
*
ptr
int
len
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment