find_caller()
module_filepath()
wrapped_info()
获取调用者信息
depth (int, optional) -- 调用深度. Defaults to 1.
(文件名, 调用者名称, 调用处行数)
tuple[str, str, int]
模块格式的路径,path.to.module.file
装饰器获取被装饰函数或类的信息
source (Callable | type) -- 被装饰函数或类
(文件名, 函数名)
tuple[str, str]