Ustawienie docstring na wyrażenie wewnątrz def
Chciałbym ustawićfunc_doc
(jako wyrażenie)w ciągu def
.
def f():
'''My function help''' #Set the docstring
def g():
"My function " + "help" # An expression, so not read as a docstring
# can I put something here to set the docstring as an expression?
g.func_doc # is None
g.func_doc = "My function " + "help" # This works
czy to możliwe?
(dwa powody, dla których mogę to zrobić: importowanie funkcji z modułu (i chcesz również zaimportować dokumentację) i użycielexer.)