diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-09-13 18:15:33 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-09-13 18:15:33 (GMT) |
commit | d8642c32744f0d60815fd32a94ab410166eaa7c1 (patch) | |
tree | b630068af01ae78aa1b90f35da65399264d20578 /Lib/test/test_trace.py | |
parent | 4d7701729caae30312689f6630c453a5b8cdacbd (diff) | |
download | cpython-d8642c32744f0d60815fd32a94ab410166eaa7c1.zip cpython-d8642c32744f0d60815fd32a94ab410166eaa7c1.tar.gz cpython-d8642c32744f0d60815fd32a94ab410166eaa7c1.tar.bz2 |
Removed debugging setting
Diffstat (limited to 'Lib/test/test_trace.py')
-rw-r--r-- | Lib/test/test_trace.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py index 8ca9ba4..6c483f8 100644 --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -104,7 +104,6 @@ class TestLineCounts(unittest.TestCase): def setUp(self): self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) self.my_py_filename = fix_ext_py(__file__) - self.maxDiff = None def test_traced_func_linear(self): result = self.tracer.runfunc(traced_func_linear, 2, 5) |