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 has been archived by the owner on Oct 6, 2020. It is now read-only.
We've recently included Python 3.8 in our CI system (although failures are allowed). The tests are currently failing on this version, see here.
We should fix the tests and add Python 3.8 support before it is officially released. It appears this version will be officially released sometime in October: PEP 569.
The text was updated successfully, but these errors were encountered:
The lineno and col_offset attributes of the AST for decorated function
and class refer now to the position of the corresponding def, async def and class instead of the position of the first decorator. This
leads to more correct line reporting in tracing. This is the only case when
the position of child AST nodes can preceed the position of the parent AST
node.
We'll have to account for this discrepancy between 3.8+ and < 3.8.
We've recently included Python 3.8 in our CI system (although failures are allowed). The tests are currently failing on this version, see here.
We should fix the tests and add Python 3.8 support before it is officially released. It appears this version will be officially released sometime in October: PEP 569.
The text was updated successfully, but these errors were encountered: