File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ pandas 0.8.2
102
102
rolling_std (#1840)
103
103
- Let Series.str.split accept no arguments (like str.split) (#1859)
104
104
- Allow user to have dateutil 2.1 installed on a Python 2 system (#1851)
105
+ - Catch ImportError less aggressively in pandas/__init__.py (#1845)
105
106
106
107
pandas 0.8.1
107
108
============
Original file line number Diff line number Diff line change 11
11
except Exception : # pragma: no cover
12
12
import sys
13
13
e = sys .exc_info ()[1 ] # Py25 and Py3 current exception syntax conflict
14
- if 'No module named' in str (e ):
14
+ if 'No module named lib ' in str (e ):
15
15
raise ImportError ('C extensions not built: if you installed already '
16
16
'verify that you are not importing from the source '
17
17
'directory' )
You can’t perform that action at this time.
0 commit comments