Skip to content

Commit e4a8b06

Browse files
committed
Old whatsnew
1 parent a70f86d commit e4a8b06

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

doc/source/whatsnew/v0.18.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ New Behavior:
373373
s = pd.Series([1,2,3], index=np.arange(3.))
374374
s
375375
s.index
376-
print(s.to_csv(path=None))
376+
print(s.to_csv(path_or_buf=None, header=False))
377377

378378
Changes to dtype assignment behaviors
379379
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

doc/source/whatsnew/v0.20.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Previously, only ``gzip`` compression was supported. By default, compression of
186186
URLs and paths are now inferred using their file extensions. Additionally,
187187
support for bz2 compression in the python 2 C-engine improved (:issue:`14874`).
188188

189-
.. ipython:: python
189+
.. code-block:::: python
190190

191191
url = 'https://github.com/{repo}/raw/{branch}/{path}'.format(
192192
repo = 'pandas-dev/pandas',

doc/source/whatsnew/v0.24.0.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -461,9 +461,10 @@ all-``NaT``. This is for compatibility with ``TimedeltaIndex`` and
461461
``Series`` behavior (:issue:`22163`)
462462

463463
.. ipython:: python
464+
:okexcept:
464465

465-
df = pd.DataFrame([pd.Timedelta(days=1)])
466-
df - np.nan
466+
df = pd.DataFrame([pd.Timedelta(days=1)])
467+
df - np.nan
467468

468469
Previous Behavior:
469470

0 commit comments

Comments
 (0)