Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/python/intern/bpy_rna.c8
1 files changed, 8 insertions, 0 deletions
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;
}