You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 3, 2023. It is now read-only.
Since docstring is special and it's unclear that expression is docstring or not, we changed AST in 3.7a1.
docstring is moved from body to field. (bpo-29463)
But it removed syntactic information about docstring (e.g. lineno). We are considering changing it again. Docstring is moved back to body, but it is special statement named DocString(s). Expr(value=Str(s)) is not docstring. (bpo-32911)