diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2020-05-21 16:43:39 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2020-05-21 16:43:39 -0400 |
| commit | 174c0b935e6eebc24f2dfcabd3c3d9a26527e6d4 (patch) | |
| tree | 0560a18e8112763b168c6851eea44eef2deb0818 /api-docs | |
| parent | 6008deaf474353b666f8de7ea7faedf6a86c02ea (diff) | |
update docs to exclude inspect module
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 963b42fc..7662c649 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", "range", "pyNativeStr", "with_metaclass", "cstr", "fnsignature", "get_class_members", "datetime"))) + 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", "inspect"))) def classlist(module): members = inspect.getmembers(module, inspect.isclass) |
