Skip to content
Snippets Groups Projects
Unverified Commit 7ed8a2c6 authored by Ming-Hsuan-Tu's avatar Ming-Hsuan-Tu Committed by GitHub
Browse files

Merge pull request #26 from romanz/patch-1

Remove `fetch=False` unsupported keyword from DB.iter{items,keys,values} documentation
parents cbdbd400 7255ba4f
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,7 @@ Database object
* ``(True, <data>)`` if key is found and value in memory and ``fetch=True``
* ``(False, None)`` if key is not found
.. py:method:: iterkeys(fetch=False, verify_checksums=False, fill_cache=True, snapshot=None, read_tier="all")
.. py:method:: iterkeys(verify_checksums=False, fill_cache=True, snapshot=None, read_tier="all")
Iterate over the keys
......@@ -150,7 +150,7 @@ Database object
:rtype: :py:class:`rocksdb.BaseIterator`
.. py:method:: itervalues(fetch=False, verify_checksums=False, fill_cache=True, snapshot=None, read_tier="all")
.. py:method:: itervalues(verify_checksums=False, fill_cache=True, snapshot=None, read_tier="all")
Iterate over the values
......@@ -162,7 +162,7 @@ Database object
:rtype: :py:class:`rocksdb.BaseIterator`
.. py:method:: iteritems(fetch=False, verify_checksums=False, fill_cache=True, snapshot=None, read_tier="all")
.. py:method:: iteritems(verify_checksums=False, fill_cache=True, snapshot=None, read_tier="all")
Iterate over the items
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment