diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2020-04-07 17:56:01 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2020-04-07 17:56:01 -0400 |
| commit | 8c550f9ee9a5fcb5ec5f2cff3f0aa1e7bb68a709 (patch) | |
| tree | bfc8609cd3bc7de08c78faa70378934a0706afd1 /api-docs | |
| parent | f375d34c486bc314b66668dabc660d7fc2c19d4c (diff) | |
add additional modules to blacklist from documentation
Diffstat (limited to 'api-docs')
| -rw-r--r-- | api-docs/source/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api-docs/source/conf.py b/api-docs/source/conf.py index 9326f3a8..963b42fc 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", "re", "requests", "os", "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", "requests", "os", "startup", "associateddatastore", "range", "pyNativeStr", "with_metaclass", "cstr", "fnsignature", "get_class_members", "datetime"))) def classlist(module): members = inspect.getmembers(module, inspect.isclass) |
