Skip to content

Commit da4859d

Browse files
TomAugspurgerPingviinituutti
authored andcommitted
DOC: work around IPython directive bug (pandas-dev#23994)
Closes pandas-dev#23954
1 parent 50ef066 commit da4859d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/io.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -662,8 +662,8 @@ If ``skip_blank_lines=False``, then ``read_csv`` will not ignore blank lines:
662662

663663
.. ipython:: python
664664
665-
data = '# empty\n# second empty line\n# third empty' \
666-
'line\nX,Y,Z\n1,2,3\nA,B,C\n1,2.,4.\n5.,NaN,10.0'
665+
data = ('# empty\n# second empty line\n# third empty'
666+
'line\nX,Y,Z\n1,2,3\nA,B,C\n1,2.,4.\n5.,NaN,10.0')
667667
print(data)
668668
pd.read_csv(StringIO(data), comment='#', skiprows=4, header=1)
669669

0 commit comments

Comments
 (0)