You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem finally seem to be an odd restriction: acceptable sequences
were list, tuple, or numpy.ndarray.
A guess is that strings in Python wanted to be considered scalars,
but the above restriction was implemented rather than take anything
with a __len__ except str (or unicode for Python 2.x) in.
Considerations about the use of the buffer interface are not needed
for now.
note: I cannot run tests on Python 2.7.
```
nosetests pandas
```
ends with:
```
from . import hashtable, tslib, lib
ImportError: cannot import name hashtable
```
0 commit comments