diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-09 20:17:14 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-09 20:17:14 (GMT) |
commit | 10fb3863994a7242dd6f86bf8d571d30338f2061 (patch) | |
tree | 1a984ecfc3d553363d59a34a2d66db189f23c758 /Lib/test/test_funcattrs.py | |
parent | 658cba6706eb4a2ad8b3e235cf0db9fe1c8e9e6b (diff) | |
download | cpython-10fb3863994a7242dd6f86bf8d571d30338f2061.zip cpython-10fb3863994a7242dd6f86bf8d571d30338f2061.tar.gz cpython-10fb3863994a7242dd6f86bf8d571d30338f2061.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_funcattrs.py')
-rw-r--r-- | Lib/test/test_funcattrs.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/test/test_funcattrs.py b/Lib/test/test_funcattrs.py index 0591ba6..e41df9c 100644 --- a/Lib/test/test_funcattrs.py +++ b/Lib/test/test_funcattrs.py @@ -156,13 +156,13 @@ else: raise TestFailed del another.func_defaults def foo(): - pass + pass def bar(): - pass + pass def temp(): - print 1 + print 1 if foo==bar: raise TestFailed @@ -172,4 +172,3 @@ d[foo] = 1 foo.func_code = temp.func_code d[foo] - |