get_full_type_name¶
-
lsst.utils.introspection.get_full_type_name(cls: Any) → str¶ Return full type name of the supplied entity.
Parameters: Returns: - name :
str Full name of type.
Notes
Builtins are returned without the
builtinsspecifier included. This allowsstrto be returned as “str” rather than “builtins.str”. Any parts of the path that start with a leading underscore are removed on the assumption that they are an implementation detail and the entity will be hoisted into the parent namespace.- name :