summaryrefslogtreecommitdiff
path: root/tests/functional/ext/code_style/cs_py_version_35.py
blob: 80f75b6544e5bde9307053d7a3a39e5a8ef754b9 (plain)
1
2
3
4
5
6
7
"""No warnings should be emitted for features that require Python > 3.5"""
# pylint: disable=invalid-name

# consider-using-assignment-expr -> requires Python 3.8
a1 = 2
if a1:
    ...