-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest2.py
executable file
·64 lines (45 loc) · 982 Bytes
/
test2.py
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
from functools import wraps
def log_enter_and_exit(fn):
@wraps(fn)
def test(*args, **kwargs):
print "-"*66
ret = fn(*args, **kwargs)
print "="*66
return ret
return test
@log_enter_and_exit
def test1():
"""xxxxxxxxxxxx"""
print"hello"
print test1()
print"-"*200
from functools import wraps
import time
def log_time(fn):
@wraps(fn)
def test(*args, **kwargs):
start=time.time()
ret = fn(*args, **kwargs)
end = time.time()
print"** {} used {}s".format(fn.func_name,end-start)
return ret
return test
@log_time
def test():
print "xxx"
import time
time.sleep(2)
test()
print"-"*200
from functools import wraps
def call(n=1):
def real_call(fn):
@wraps(fn)
def test(*args, **kwargs):
return[fn(*args,**kwargs) for x in range(n)]
return test
return real_call
@call(n=1)
def hi(name):
print "xxx", name
hi("x")