summaryrefslogtreecommitdiff
path: root/api-docs/source
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-10-10 17:21:43 -0400
committerJordan Wiens <jordan@psifertex.com>2019-10-10 17:21:43 -0400
commitb805aaf2ece37ef9ebb109b48c90ef1989d16d66 (patch)
treecc7b40f3868ed7672a2e57d4829a02c01f2c9776 /api-docs/source
parent85af921dfe990be464be27add2956512e7d24de7 (diff)
remove os and re modules that snuck into api docs
Diffstat (limited to 'api-docs/source')
-rw-r--r--api-docs/source/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/api-docs/source/conf.py b/api-docs/source/conf.py
index c1a1d8bb..d46adac3 100644
--- a/api-docs/source/conf.py
+++ b/api-docs/source/conf.py
@@ -32,7 +32,7 @@ binaryninja._init_plugins() #force license check
def modulelist(modulename):
modules = inspect.getmembers(modulename, inspect.ismodule)
- return sorted(set(x for x in modules if x[0] not in ("abc", "atexit", "binaryninja", "builtins", "ctypes", "core", "struct", "sys", "_binaryninjacore", "traceback", "code", "enum", "json", "numbers", "threading", "startup", "associateddatastore")))
+ return sorted(set(x for x in modules if x[0] not in ("abc", "atexit", "binaryninja", "builtins", "ctypes", "core", "struct", "sys", "_binaryninjacore", "traceback", "code", "enum", "json", "numbers", "threading", "re", "os", "startup", "associateddatastore")))
def classlist(module):
members = inspect.getmembers(module, inspect.isclass)