summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_profile.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-07-08 04:22:35 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-07-08 04:22:35 (GMT)
commit27f883687ba01f571ff7cc03a3f03b94030f92ad (patch)
treedf34d183b440813256c4ff5d09b5f45b26448b01 /Lib/test/test_profile.py
parent0e43db5baa9e1181bfd57accfec8252b049f20dc (diff)
downloadcpython-27f883687ba01f571ff7cc03a3f03b94030f92ad.zip
cpython-27f883687ba01f571ff7cc03a3f03b94030f92ad.tar.gz
cpython-27f883687ba01f571ff7cc03a3f03b94030f92ad.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_profile.py')
-rw-r--r--Lib/test/test_profile.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/test/test_profile.py b/Lib/test/test_profile.py
index 1b1f50b..e0bda5c 100644
--- a/Lib/test/test_profile.py
+++ b/Lib/test/test_profile.py
@@ -86,14 +86,14 @@ class C:
def test_2():
- d = globals().copy()
- def testfunc():
- global x
- x = 1
- d['testfunc'] = testfunc
- profile.runctx("testfunc()", d, d, TESTFN)
- vereq (x, 1)
- os.unlink (TESTFN)
+ d = globals().copy()
+ def testfunc():
+ global x
+ x = 1
+ d['testfunc'] = testfunc
+ profile.runctx("testfunc()", d, d, TESTFN)
+ vereq (x, 1)
+ os.unlink (TESTFN)
if __name__ == "__main__":
test_main()