1
In [1]: import json

In [2]: path = 'ch02/usagov_bitly_data2012-03-16-1331923249.txt'

In [3]: from pandas import DataFrame, Series;

In [4]: records = [json.loads(line) for line in open(path)]

In [5]: frame = DataFrame(records)

In [6]: frame['tz'][:10]
Segmentation fault: 11

对帧的任何访问都会导致段错误。我已经升级到 Python 2.7.6 RC1。也发生在 2.7.5 中,也发生在 ipython 之外。我是什么做的?

4

1 回答 1

3

这似乎是最近修复的 Numpy 中的一个错误。见https://github.com/numpy/numpy/issues/3962

于 2013-11-01T17:41:05.663 回答