pandas.io.excel.read_excel在调试模式下运行但不在python调试交互

时间:2015-06-03 19:00:35

标签: python debugging visual-studio-2013 pandas

所以这很有趣。我在Visual Studio 2013 IDE上使用Anaconda安装的python 2.7(64位)。我正在使用pandas版本0.16.1。

当我尝试在调试模式下在IDE中运行以下两行时出现错误:

import pandas as pd
RetSeries = pd.io.excel.read_excel('c:/testdata.xlsx','Sheet1')

,并提供:

un(shallow)copyable object of type <type 'Element'>" in file cElementTree.py

但是,相同的代码在Python交互式环境和Visual Studio中的Python Debug Interactive中都有效。

此外,如果我突破了RetSeries = ...&#39;,在Python Debug Interactive中执行该行,然后返回到我的IDE并继续,代码可以运行。

可能导致这种行为差异的原因是什么?

0 个答案:

没有答案