Merge pull request #684 from quantopian/apparently-windows-doesnt-have-nan

BUG: Use NAN from numpy.
This commit is contained in:
Scott Sanderson
2015-08-25 13:10:50 -04:00
+2 -2
View File
@@ -23,8 +23,8 @@ from zipline.errors import (
WindowLengthTooLong,
)
cdef extern from "math.h" nogil:
float NAN
cdef double NAN = float64('nan')
NOMASK = None