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
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