Skip to content

Commit

Permalink
merge conflict fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Jan 3, 2020
1 parent ad9b8fd commit a6e5b91
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions doc/source/whatsnew/v1.0.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ Note that errors will now be raised when conflicting or potentially ambiguous ar
Out[1]:
0
1 1
In [2]: df.rename(mapper={0: 1}, index={0: 2})
Out[2]:
0
Expand All @@ -339,7 +339,7 @@ Note that errors will now be raised when conflicting or potentially ambiguous ar
*pandas 1.0.0*

.. ipython:: python
df.rename({0: 1}, index={0: 2})
df.rename(mapper={0: 1}, index={0: 2})
Expand All @@ -357,7 +357,7 @@ keywords.
.. ipython:: python
df.rename(index={0: 1}, columns={0: 2})
Extended verbose info output for :class:`~pandas.DataFrame`
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down Expand Up @@ -441,7 +441,6 @@ As a reminder, you can specify the ``dtype`` to disable all inference.
>>> a[2]
nan
>>>>>>> upstream/master
*pandas 1.0.0*

.. ipython:: python
Expand Down

0 comments on commit a6e5b91

Please sign in to comment.