Skip to content

Commit

Permalink
DOC: Fix missing parentheses in documentation (#16862)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianliaw authored and jreback committed Jul 10, 2017
1 parent 3be2de6 commit a5477b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/source/groupby.rst
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ The dimension of the returned result can also change:
d = pd.DataFrame({"a":["x", "y"], "b":[1,2]})
def identity(df):
print df
print(df)
return df
d.groupby("a").apply(identity)
Expand Down
4 changes: 2 additions & 2 deletions doc/source/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3194,7 +3194,7 @@ You can pass ``iterator=True`` to iterate over the unpacked results
.. ipython:: python
for o in pd.read_msgpack('foo.msg',iterator=True):
print o
print(o)
You can pass ``append=True`` to the writer to append to an existing pack

Expand Down Expand Up @@ -3912,7 +3912,7 @@ chunks.
evens = [2,4,6,8,10]
coordinates = store.select_as_coordinates('dfeq','number=evens')
for c in chunks(coordinates, 2):
print store.select('dfeq',where=c)
print(store.select('dfeq',where=c))
Advanced Queries
++++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v0.13.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ Experimental
.. ipython:: python

for o in pd.read_msgpack('foo.msg',iterator=True):
print o
print(o)

.. ipython:: python
:suppress:
Expand Down

0 comments on commit a5477b7

Please sign in to comment.