summaryrefslogtreecommitdiffstatshomepage
path: root/tests/cpydiff/core_function_instancevar.py
blob: ab027b166287d50a7dc37f2cb80197e1a6bc7014 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
"""
categories: Core,Functions
description: Assign instance variable to function
cause: Unknown
workaround: Unknown
"""
def f():
    pass

f.x = 0
print(f.x)