summaryrefslogtreecommitdiffstats
path: root/Lib/test/inspect_fodder2.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2005-01-07 16:01:32 (GMT)
committerTim Peters <tim.peters@gmail.com>2005-01-07 16:01:32 (GMT)
commit5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd (patch)
treec522f4e92f25037fe08318a3159743d1a21fb7ec /Lib/test/inspect_fodder2.py
parente4f5600e5ca35feef87281090929cac7d8226388 (diff)
downloadcpython-5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd.zip
cpython-5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd.tar.gz
cpython-5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/inspect_fodder2.py')
-rw-r--r--Lib/test/inspect_fodder2.py16
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