summaryrefslogtreecommitdiff
path: root/tests/functional/n/non_ascii_name/non_ascii_name_kwargs_py39plus.py
blob: 0dfceb38f472e83231473f6a29f127f0ca0e0680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Defining non ASCII variables in a function call

This test is 3.9+ and not using 'min_pyver_end_position'
as the starting column is also incorrect on < 3.9
"""


def okay(**kwargs):
    """Print kwargs"""
    print(kwargs)


okay(
    a_long_attribute_that_is_very_okay=1,
    b_belongs_to_yet_another_okay_attributed=2,
    łol=3,  # [non-ascii-name]
)