[issue27361] ValueError on eval after 'from pandas import *'

2016-06-21 Thread SilentGhost
SilentGhost added the comment: Pandas is not part of the standard library. Their issue tracker is at https://github.com/pydata/pandas/issues -- nosy: +SilentGhost resolution: -> third party stage: -> resolved status: open -> closed ___ Python track

[issue27361] ValueError on eval after 'from pandas import *'

2016-06-21 Thread Eric Sprigg
New submission from Eric Sprigg: Using 'from pandas import *' leads to a ValueError exception being raised when eval tries to execute an expression like eval("df['Country'] == 'Brazil'") When the alternative form 'import pandas' is used, the expression evaluates as expected. The test progra