Commit 18eb3fe6 authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #267 from andreasvc/master

No error checking for PyFloat_AS_DOUBLE() as documented
parents 3cf7a9b8 3c13f283
......@@ -34,6 +34,6 @@ cdef extern from "Python.h":
double PyFloat_AsDouble(object pyfloat) except? -1
# Return a C double representation of the contents of pyfloat.
double PyFloat_AS_DOUBLE(object pyfloat) except? -1
double PyFloat_AS_DOUBLE(object pyfloat)
# Return a C double representation of the contents of pyfloat, but
# without error checking.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment