summaryrefslogtreecommitdiff
path: root/api-docs/source
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-09-26 18:00:19 -0400
committerJordan Wiens <jordan@psifertex.com>2019-09-26 18:00:19 -0400
commit07c05375ea69d8d0b2fe63c078b83a251b7fad7d (patch)
tree4f347daf2b8ca882de67ae8d6d513d983c713542 /api-docs/source
parentfac72eeca68e1c85647159fb557daf759020d8d5 (diff)
exlucde two modules not intended to be documented
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 276f8529..c1a1d8bb 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", "binaryninja", "builtins", "ctypes", "core", "struct", "sys", "_binaryninjacore", "traceback", "code", "enum", "json", "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", "startup", "associateddatastore")))
def classlist(module):
members = inspect.getmembers(module, inspect.isclass)