From c2ef6d83aab41f558d8e654c474ef31bc94b9426 Mon Sep 17 00:00:00 2001 From: chfw Date: Tue, 23 Aug 2016 18:04:36 +0100 Subject: [PATCH] fix a bug in readme doctest --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 2bbdaaf..df58ef0 100644 --- a/README.rst +++ b/README.rst @@ -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]]