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 11
11
import numpy as np
12
12
13
13
import pandas .core .common as com
14
- from pandas .core .computation .check import _NUMEXPR_INSTALLED
14
+ from pandas .core .computation .check import _NUMEXPR_INSTALLED , _NUMEXPR_VERSION
15
15
from pandas .core .config import get_option
16
16
17
17
if _NUMEXPR_INSTALLED :
Original file line number Diff line number Diff line change 15
15
import pandas as pd
16
16
from pandas .core .base import StringMixin
17
17
import pandas .core .common as com
18
- from pandas .core .computation .check import _NUMEXPR_VERSION
18
+ from pandas .core .computation .check import _NUMEXPR_INSTALLED , _NUMEXPR_VERSION
19
19
from pandas .core .computation .common import _ensure_decoded , _result_type_many
20
- from pandas .core .computation .expressions import _NUMEXPR_INSTALLED
21
20
from pandas .core .computation .scope import _DEFAULT_GLOBALS
22
21
23
22
from pandas .io .formats .printing import pprint_thing , pprint_thing_encoded
Original file line number Diff line number Diff line change 18
18
from pandas .core .computation .engines import _engines , NumExprClobberingError
19
19
from pandas .core .computation .expr import PythonExprVisitor , PandasExprVisitor
20
20
from pandas .core .computation .expressions import (
21
- _USE_NUMEXPR , _NUMEXPR_INSTALLED )
21
+ _USE_NUMEXPR , _NUMEXPR_INSTALLED , _NUMEXPR_VERSION )
22
22
from pandas .core .computation .ops import (
23
23
_binary_ops_dict ,
24
24
_special_case_arith_ops_syms ,
32
32
assert_numpy_array_equal , assert_series_equal ,
33
33
assert_produces_warning )
34
34
from pandas .compat import PY3 , reduce
35
- from pandas .core .computation .check import _NUMEXPR_VERSION
36
35
37
36
38
37
_series_frame_incompatible = _bool_ops_syms
You can’t perform that action at this time.
0 commit comments