Удалить имя пакета и модуля из функции sphinx каким-либо образом удалить имя пакета и/или модуля из документа sphinx? Пример: если существует функция waa внутри модуля foo.bar, то первый код .. automodule:: foo.bar :members: будет генерировать foo.bar.waa() и я хочу вывести waa() Ответ 1 Вы можете изменить add_module_names на False в файле conf.py: # If true, the current module name will be prepended to all description # unit titles (such as .. function::). add_module_names = False Затем foo.bar.my_function() будет отображаться как my_function().
Ответ 1 Вы можете изменить add_module_names на False в файле conf.py: # If true, the current module name will be prepended to all description # unit titles (such as .. function::). add_module_names = False Затем foo.bar.my_function() будет отображаться как my_function().