summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWouter Bolsterlee <uws@xs4all.nl>2013-11-17 00:54:33 +0100
committerWouter Bolsterlee <uws@xs4all.nl>2013-11-17 00:54:33 +0100
commit87275df09b240858bc5bb731c8c71ba7e935ca13 (patch)
tree00cb9c82fe85025cff22df14bd4e7a1c16eff5f3
parent69babd1f163596dfd16a68134ecd600a7aa4623a (diff)
downloadhappybase-87275df09b240858bc5bb731c8c71ba7e935ca13.tar.gz
Add missing arg docstrings for Table.scan
-rw-r--r--happybase/table.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/happybase/table.py b/happybase/table.py
index cbbe144..ec67092 100644
--- a/happybase/table.py
+++ b/happybase/table.py
@@ -274,6 +274,8 @@ class Table(object):
:param int timestamp: timestamp (optional)
:param bool include_timestamp: whether timestamps are returned
:param int batch_size: batch size for retrieving resuls
+ :param int limit: max number of rows to return
+ :param bool sorted_columns: whether to return sorted columns
:return: generator yielding the rows matching the scan
:rtype: iterable of `(row_key, row_data)` tuples