summaryrefslogtreecommitdiff
path: root/tests/functional/n/non_ascii_name/non_ascii_name_dict_kwargs.py
blob: 5d7b4c7f3739bd9a31a96aa21ae9f3adbc00b3b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
We don't expect this to give any errors!
"""


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


keyword_args = {"łol": "this would be hard to check against"}

okay(**keyword_args)