Skip to content

Commit

Permalink
Old whatsnew
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Sep 18, 2018
1 parent a70f86d commit e4a8b06
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v0.18.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ New Behavior:
s = pd.Series([1,2,3], index=np.arange(3.))
s
s.index
print(s.to_csv(path=None))
print(s.to_csv(path_or_buf=None, header=False))

Changes to dtype assignment behaviors
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v0.20.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Previously, only ``gzip`` compression was supported. By default, compression of
URLs and paths are now inferred using their file extensions. Additionally,
support for bz2 compression in the python 2 C-engine improved (:issue:`14874`).

.. ipython:: python
.. code-block:::: python

url = 'https://github.com/{repo}/raw/{branch}/{path}'.format(
repo = 'pandas-dev/pandas',
Expand Down
5 changes: 3 additions & 2 deletions doc/source/whatsnew/v0.24.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -461,9 +461,10 @@ all-``NaT``. This is for compatibility with ``TimedeltaIndex`` and
``Series`` behavior (:issue:`22163`)

.. ipython:: python
:okexcept:

df = pd.DataFrame([pd.Timedelta(days=1)])
df - np.nan
df = pd.DataFrame([pd.Timedelta(days=1)])
df - np.nan

Previous Behavior:

Expand Down

0 comments on commit e4a8b06

Please sign in to comment.