From dc61a63e3f1bb3773677fb009fd787af7bd5c727 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 19 Feb 2021 19:10:48 +1100 Subject: PyAPI: include all members in dir(bpy.types) C/Python defined types were accessible but not exposed in dir(bpy.types) --- source/blender/python/intern/bpy_rna.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/python') diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index c48a50c5ec6..ad185226aa5 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -7720,6 +7720,14 @@ static PyObject *bpy_types_module_dir(PyObject *self) PyList_APPEND(ret, PyUnicode_FromString(RNA_struct_identifier(srna))); } RNA_PROP_END; + + /* Include the modules `__dict__` for Python only types. */ + PyObject *submodule_dict = PyModule_GetDict(self); + PyObject *key, *value; + Py_ssize_t pos = 0; + while (PyDict_Next(submodule_dict, &pos, &key, &value)) { + PyList_APPEND(ret, key); + } return ret; } -- cgit v1.2.3