Skip to content

Commit 035c921

Browse files
committed
doc comments
1 parent e0d1606 commit 035c921

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

doc/source/whatsnew/v0.20.0.txt

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ Other enhancements
3737

3838
.. ipython:: python
3939

40-
from io import StringIO
4140
data = "a,b\n1,2\n3,4"
4241
pd.read_csv(StringIO(data), engine='python').dtypes
4342
pd.read_csv(StringIO(data), engine='python', dtype={'a':'float64', 'b':'object'}).dtypes

pandas/io/parsers.py

-3
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,6 @@
117117
Use `str` or `object` to preserve and not interpret dtype.
118118
If converters are specified, they will be applied INSTEAD
119119
of dtype conversion.
120-
121-
.. versionadded:: 0.20.0 support for the Python parser.
122-
123120
%s
124121
converters : dict, default None
125122
Dict of functions for converting values in certain columns. Keys can either

0 commit comments

Comments
 (0)