[issue40712] fstrings are not docstrings
radkujawa added the comment: duplicate of https://bugs.python.org/issue28739 behaviour described in: https://docs.python.org/3/reference/lexical_analysis.html#formatted-string-literals -- stage: -> resolved status: open -> closed ___
[issue40712] fstrings are not docstrings
New submission from radkujawa : see example: >>> def f(): ... f"""asdf""" ... pass ... >>> f.__doc__ >>> def f(): ... """asdf""" ... pass ... >>> f.__doc__ 'asdf' >>