ENH: Update Cython imports.

This commit is contained in:
Stefan van der Walt
2010-11-07 01:12:54 +02:00
parent 0bf6895a49
commit 20ab4cdaff
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ from __future__ import division
# cython specific imports
import cython
from stdlib cimport malloc, free
from libc.stdlib cimport malloc, free
cdef extern from "pyport.h":
double Py_HUGE_VAL
+1 -1
View File
@@ -1,7 +1,7 @@
import ctypes
import numpy as np
cimport numpy as np
from python cimport *
from cpython cimport *
from opencv_constants import *
from opencv_type cimport *
from _libimport import cv, cxcore
+2 -2
View File
@@ -5,8 +5,8 @@ import ctypes
cimport numpy as np
import numpy as np
from python cimport *
from stdlib cimport *
from cpython cimport *
from libc.stdlib cimport *
from opencv_type cimport *
from opencv_backend import *
from opencv_backend cimport *