File: example.py

package info (click to toggle)
kdevelop-python 5.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,480 kB
  • sloc: python: 183,325; cpp: 17,155; xml: 1,137; sh: 14; makefile: 13
file content (15 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This file is used to unit-test the "correction files" feature,
# and can serve as an example of the capabilities of this feature.

def function_global_func():
    returns = int()

class class_some_class():
    def function___init__(self):
        l_bar = float()

    def function_member_func1(self):
        l_baz = [3]

    def function_member_func2(self):
        returns = [float()]