File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 7
7
import numpy as np
8
8
9
9
try :
10
- import hashtable
11
- import tslib
12
- import lib
10
+ from . import hashtable , tslib , lib
13
11
except Exception : # pragma: no cover
14
12
import sys
15
13
e = sys .exc_info ()[1 ] # Py25 and Py3 current exception syntax conflict
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ cnp.import_ufunc()
18
18
19
19
cdef int64_t iNaT = util.get_nat()
20
20
21
- import algos
21
+ from . import algos
22
22
23
23
cdef extern from " datetime.h" :
24
24
bint PyDateTime_Check(object o)
Original file line number Diff line number Diff line change @@ -597,7 +597,7 @@ def pxd(name):
597
597
598
598
extensions = []
599
599
600
- for name , data in ext_data .iteritems ():
600
+ for name , data in ext_data .items ():
601
601
sources = [srcpath (data ['pyxfile' ], suffix = suffix , subdir = '' )]
602
602
pxds = [pxd (x ) for x in data .get ('pxdfiles' , [])]
603
603
if suffix == '.pyx' and pxds :
You can’t perform that action at this time.
0 commit comments