File: _debugger_case17.py

package info (click to toggle)
pydevd 3.3.0%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 13,892 kB
  • sloc: python: 77,508; cpp: 1,869; sh: 368; makefile: 50; ansic: 4
file content (44 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (3)
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
def get_here():
    a = 10


def foo(func):
    return func


def m1():  # @DontTrace
    get_here()


# @DontTrace
def m2():
    get_here()


# @DontTrace
@foo
def m3():
    get_here()


@foo
@foo
def m4():  # @DontTrace
    get_here()


def main():

    m1()  # break1

    m2()  # break2

    m3()  # break3

    m4()  # break4


if __name__ == '__main__':
    main()

    print('TEST SUCEEDED')