File: test18.py

package info (click to toggle)
pychecker 0.8.17-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,856 kB
  • ctags: 1,896
  • sloc: python: 9,301; sh: 131; makefile: 44
file content (44 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
'd'

class A:
    "d"
    def __init__(self): pass

class X:
    "d"
    def __init__(self, x): pass

class Y:
    "d"
    def __init__(self, x, y, z): pass

class Z:
    "d"
    def __init__(self, x, y, z, *args, **kw): pass

def j():
    A()
    A(1)

    X()
    X(1)
    X(1, 2)
    X(1, 2, 3)
    X(1, 2, 3, 4)

    Y()
    Y(1)
    Y(1, 2)
    Y(1, 2, 3)
    Y(1, 2, 3, 4)

    Z()
    Z(1)
    Z(1, 2)
    Z(1, 2, 3)
    Z(1, 2, 3, 4)
    Z(1, 2, 3, 4, 5)
    Z(1, 2, 3, 4, 5, 6)
    Z(1, 2, 3, 4, k=1, j=2, m=3, f=5)