(= Cython _version_ 3.x, not to be confused with the cython3 binary)
Author: Chad Fulton
Origin: https://github.com/statsmodels/statsmodels/pull/8961
Bug-Ubuntu: https://launchpad.net/bugs/
2043284
Forwarded: not-needed (see Origin - but not merged yet)
Gbp-Pq: Name cython3p0_compat.patch
#!python
-#cython: wraparound=False, boundscheck=False, cdivision=True
+#cython: wraparound=False, boundscheck=False, cdivision=True, cpow=True
from cpython cimport bool
import numpy as np
#cython: boundscheck=False
#cython: wraparound=False
#cython: cdivision=False
+#cython: cpow=True
"""
State Space Models
#cython: boundscheck=False
#cython: wraparound=False
#cython: cdivision=False
+#cython: cpow=True
"""
State Space Models
cdef {{cython_type}} {{prefix}}scale_univariate({{prefix}}KalmanFilter kfilter, {{prefix}}Statespace model):
return 0
-{{endfor}}
\ No newline at end of file
+{{endfor}}
#cython: boundscheck=False
#cython: wraparound=False
#cython: cdivision=False
+#cython: cpow=True
"""
State Space Models
cdef {{cython_type}} {{prefix}}loglikelihood_univariate_diffuse({{prefix}}KalmanFilter kfilter, {{prefix}}Statespace model, {{cython_type}} determinant):
return 0
-{{endfor}}
\ No newline at end of file
+{{endfor}}