fix a bug in readme doctest

This commit is contained in:
chfw 2016-08-23 18:04:36 +01:00
parent aff0eb7272
commit c2ef6d83aa
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ Obvious, you could do both at the same time:
.. code-block:: python
>>> partial_data = get_data("huge_file.xls",
... start_row=2, row_limit=3)
... start_row=2, row_limit=3,
... start_column=1, column_limit=2)
>>> partial_data['huge']
[[3, 23, 33], [4, 24, 34], [5, 25, 35]]