summaryrefslogtreecommitdiffstatshomepage
path: root/examples/natmod/btree/btree_py.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/natmod/btree/btree_py.py')
-rw-r--r--examples/natmod/btree/btree_py.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/natmod/btree/btree_py.py b/examples/natmod/btree/btree_py.py
index bd53c084a1..461b045c98 100644
--- a/examples/natmod/btree/btree_py.py
+++ b/examples/natmod/btree/btree_py.py
@@ -1,3 +1,7 @@
# Implemented in Python to support keyword arguments
+
+# ruff: noqa: F821 - this file is evaluated with C-defined names in scope
+
+
def open(stream, *, flags=0, cachesize=0, pagesize=0, minkeypage=0):
return _open(stream, flags, cachesize, pagesize, minkeypage)