Relatively obscure #Python standards question:
In PEP 257¹ and PEP 258², "attribute docstrings" are defined as:
«A string literal immediately following an assignment statement»
Python's abstract syntax trees do not represent blank lines, it is as if they were deleted in the input source.
Note that PEP 258 does also explicitly mention that using blank lines to visually separate documented attributes.
Question: how many blank lines is the specification allowing between the assignment and the string literal? Is the specification talking about abstract or concrete syntax?
¹ https://peps.python.org/pep-0257/#what-is-a-docstring
² https://peps.python.org/pep-0258/#attribute-docstrings