File indexing completed on 2024-05-12 16:08:22

0001 # This file is used to unit-test the "correction files" feature,
0002 # and can serve as an example of the capabilities of this feature.
0003 
0004 def function_global_func():
0005     returns = int()
0006 
0007 class class_some_class():
0008     def function___init__(self):
0009         l_bar = float()
0010 
0011     def function_member_func1(self):
0012         l_baz = [3]
0013 
0014     def function_member_func2(self):
0015         returns = [float()]