Skip to content

Commit 1412f66

Browse files
committed
Merge pull request #4350 from cpcloud/fixup-indexing-doc-failures
DOC/BUG: fix doc build error because a frame was being redefined
2 parents a0854b0 + c2d1bd9 commit 1412f66

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

doc/source/indexing.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,12 @@ Selecting values from a DataFrame with a boolean critierion now also preserves
512512
input data shape. ``where`` is used under the hood as the implementation.
513513
Equivalent is ``df.where(df < 0)``
514514

515+
.. ipython:: python
516+
:suppress:
517+
518+
dates = date_range('1/1/2000', periods=8)
519+
df = DataFrame(randn(8, 4), index=dates, columns=['A', 'B', 'C', 'D'])
520+
515521
.. ipython:: python
516522
517523
df[df < 0]

doc/source/v0.13.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _whatsnew_0130:
22

33
v0.13.0 (August ??, 2013)
4-
------------------------
4+
-------------------------
55

66
This is a major release from 0.12.0 and includes several new features and
77
enhancements along with a large number of bug fixes.

0 commit comments

Comments
 (0)