diff options
Diffstat (limited to 'Lib/test/inspect_fodder2.py')
-rw-r--r-- | Lib/test/inspect_fodder2.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/test/inspect_fodder2.py b/Lib/test/inspect_fodder2.py index ce42929..44c7572 100644 --- a/Lib/test/inspect_fodder2.py +++ b/Lib/test/inspect_fodder2.py @@ -1,25 +1,25 @@ # line 1 def wrap(foo=None): - def wrapper(func): - return func - return wrapper + def wrapper(func): + return func + return wrapper # line 7 def replace(func): - def insteadfunc(): - print 'hello' - return insteadfunc + def insteadfunc(): + print 'hello' + return insteadfunc # line 13 @wrap() @wrap(wrap) def wrapped(): - pass + pass # line 19 @replace def gone(): - pass + pass # line 24 oll = lambda m: m |