File: test86.py

package info (click to toggle)
pychecker 0.8.19-10
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,484 kB
  • ctags: 2,114
  • sloc: python: 9,968; sh: 98; makefile: 13
file content (96 lines) | stat: -rw-r--r-- 1,476 bytes parent folder | download | duplicates (5)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
'warn about raising/catching string exceptions'

__pychecker__ = 'no-classdoc'

class g(Exception): pass
h = 'blah'
i = g
j = KeyError
class k: pass

def f1(a, b, c):
    'should not warn'
    class z(Exception): pass
    if a:
        raise
    if a:
        raise KeyError
    if a:
        raise b, ''
    if a:
        raise c()
    if a:
        raise g, ''
    if a:
        raise i
    if a:
        raise j
    if a:
        raise z

def f2(a):
    'should warn'
    if a:
        raise 'strerr'
    if a:
        raise h, ''
    if a:
        raise k

def f3(a, b, c):
    'should not warn'
    class z(Exception): pass
    try:
        f1(a, b, c)
    except a:
        pass
    except b.bbb:
        pass
    except KeyError:
        pass
    except (TypeError, KeyError):
        pass
    except g:
        pass
    except z:
        pass
    except (g, z):
        pass
    except i, detail:
        print detail
    except Exception, detail:
        print detail
    except:
        pass

def f4(a):
    'should warn'
    try:
        f2(a)
    except 'strerr':
        pass
    except ('strerr1', 'strerr2'):
        pass
    except ('strerr1', KeyError):
        pass
    except h:
        pass
    except k:
        pass

tt = (KeyError, ValueError)

def f5(a):
    'should not warn'
    try:
        f2(a)
    except tt:
        pass

def f6(a):
    'should not warn'
    # but does in 0.8.17
    try:
        pass
    except KeyboardInterrupt:
        pass