From 07c05375ea69d8d0b2fe63c078b83a251b7fad7d Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Thu, 26 Sep 2019 18:00:19 -0400 Subject: exlucde two modules not intended to be documented --- api-docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api-docs/source') 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) -- cgit v1.3.1