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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
4a978f24
Commit
4a978f24
authored
Feb 01, 2015
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
merge 0.22.x branch into master
parents
39c60001
c66d14f1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
7 deletions
+14
-7
CHANGES.rst
CHANGES.rst
+8
-1
Cython/Includes/numpy/math.pxd
Cython/Includes/numpy/math.pxd
+6
-6
No files found.
CHANGES.rst
View file @
4a978f24
...
...
@@ -40,6 +40,9 @@ Bugs fixed
* Failure to find any files for the path pattern(s) passed into ``cythonize()``
is now an error to more easily detect accidental typos.
* The ``logaddexp`` family of functions in ``numpy.math`` now has correct
declarations.
Other changes
-------------
...
...
@@ -47,7 +50,11 @@ Other changes
To try parsing your files against this grammar, use the --formal_grammar directive.
Experimental.
* ``_`` is no longer considered a cacheable builtin as it could interfere with gettext.
* ``_`` is no longer considered a cacheable builtin as it could interfere with
gettext.
* The ``PyTypeObject`` declaration in ``cpython.object`` was extended to include
the CPython type flags.
0.21.2 (2014-12-27)
...
...
Cython/Includes/numpy/math.pxd
View file @
4a978f24
...
...
@@ -119,15 +119,15 @@ cdef extern from "numpy/npy_math.h" nogil:
# NumPy extensions
float
deg2radf
"npy_deg2radf"
(
float
x
)
float
rad2degf
"npy_rad2degf"
(
float
x
)
float
logaddexpf
"npy_logaddexpf"
(
float
x
)
float
logaddexp2f
"npy_logaddexp2f"
(
float
x
)
float
logaddexpf
"npy_logaddexpf"
(
float
x
,
float
y
)
float
logaddexp2f
"npy_logaddexp2f"
(
float
x
,
float
y
)
double
deg2rad
"npy_deg2rad"
(
double
x
)
double
rad2deg
"npy_rad2deg"
(
double
x
)
double
logaddexp
"npy_logaddexp"
(
double
x
)
double
logaddexp2
"npy_logaddexp2"
(
double
x
)
double
logaddexp
"npy_logaddexp"
(
double
x
,
double
y
)
double
logaddexp2
"npy_logaddexp2"
(
double
x
,
double
y
)
long
double
deg2radl
"npy_deg2radl"
(
long
double
x
)
long
double
rad2degl
"npy_rad2degl"
(
long
double
x
)
long
double
logaddexpl
"npy_logaddexpl"
(
long
double
x
)
long
double
logaddexp2l
"npy_logaddexp2l"
(
long
double
x
)
long
double
logaddexpl
"npy_logaddexpl"
(
long
double
x
,
long
double
y
)
long
double
logaddexp2l
"npy_logaddexp2l"
(
long
double
x
,
long
double
y
)
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