summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/lang/python/wiredtiger.i
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/lang/python/wiredtiger.i')
-rw-r--r--src/third_party/wiredtiger/lang/python/wiredtiger.i12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/third_party/wiredtiger/lang/python/wiredtiger.i b/src/third_party/wiredtiger/lang/python/wiredtiger.i
index e976af6a284..0c95be87c1b 100644
--- a/src/third_party/wiredtiger/lang/python/wiredtiger.i
+++ b/src/third_party/wiredtiger/lang/python/wiredtiger.i
@@ -1,5 +1,5 @@
/*-
- * Public Domain 2014-2017 MongoDB, Inc.
+ * Public Domain 2014-2018 MongoDB, Inc.
* Public Domain 2008-2014 WiredTiger, Inc.
*
* This is free and unencumbered software released into the public domain.
@@ -511,7 +511,6 @@ COMPARE_NOTFOUND_OK(__wt_cursor::_search_near)
%exception wiredtiger_version;
%exception diagnostic_build;
%exception timestamp_build;
-%exception verbose_build;
/* WT_ASYNC_OP customization. */
/* First, replace the varargs get / set methods with Python equivalents. */
@@ -1013,18 +1012,9 @@ int diagnostic_build() {
int timestamp_build() {
return WT_TIMESTAMP_SIZE > 0;
}
-
-int verbose_build() {
-#ifdef HAVE_VERBOSE
- return 1;
-#else
- return 0;
-#endif
-}
%}
int diagnostic_build();
int timestamp_build();
-int verbose_build();
/* Remove / rename parts of the C API that we don't want in Python. */
%immutable __wt_cursor::session;