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
___
Python tracke
New submission from radkujawa :
see example:
>>> def f():
... f"""asdf"""
... pass
...
>>> f.__doc__
>>> def f():
... """asdf"""
... pass
...
>>> f.__doc__
'asdf'
>>>
--
components: Tests
messages: 369518
nosy: radkujawa
priority: normal
severity: normal
status: open