summaryrefslogtreecommitdiff
path: root/lang/python
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2012-01-25 14:24:15 +1100
committerMichael Cahill <michael.cahill@wiredtiger.com>2012-01-25 14:24:15 +1100
commit246589707aa7e3a700b65790326546677ccaaa7d (patch)
tree1389b5069d32ac356892ea89267673b7d7429ae0 /lang/python
parent9d2c22a5a31eec1d9acfc542a2bd8f430dff7afa (diff)
downloadmongo-246589707aa7e3a700b65790326546677ccaaa7d.tar.gz
Replace WT_CURSOR::first,last} with WT_CURSOR::reset.
Diffstat (limited to 'lang/python')
-rw-r--r--lang/python/wiredtiger.i5
1 files changed, 0 insertions, 5 deletions
diff --git a/lang/python/wiredtiger.i b/lang/python/wiredtiger.i
index 0b107812bc0..c7a12729451 100644
--- a/lang/python/wiredtiger.i
+++ b/lang/python/wiredtiger.i
@@ -296,11 +296,6 @@ SELFHELPER(struct __wt_cursor)
if not hasattr(self, '_iterable'):
self._iterable = IterableCursor(self)
return self._iterable
-
- def reset(self):
- '''Forget the current cursor position'''
- self.last()
- self.next()
%}
};