ENH: support decimal option in PythonParser · Issue #12933 · pandas-dev/pandas (original) (raw)

In [5]: pd.read_csv(StringIO('1,2;2,3'),decimal=',',sep=';',header=None,engine='c')
Out[5]: 
     0    1
0  1.2  2.3

In [6]: pd.read_csv(StringIO('1,2;2,3'),decimal=',',sep=';',header=None,engine='python')
ValueError: The 'decimal' option is not supported with the 'python' engine