diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-09-13 18:16:55 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-09-13 18:16:55 (GMT) |
commit | 93ae8a613001f15004429936174245fc455138f3 (patch) | |
tree | 791ec41bdc56dc3318e50f40712aee63ceb69d25 | |
parent | 928474561c736d87787c99d1c7198ab062318baa (diff) | |
download | cpython-93ae8a613001f15004429936174245fc455138f3.zip cpython-93ae8a613001f15004429936174245fc455138f3.tar.gz cpython-93ae8a613001f15004429936174245fc455138f3.tar.bz2 |
Removed debugging setting
-rw-r--r-- | Lib/test/test_trace.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py index 3436aa4..f699d99 100644 --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -219,7 +219,7 @@ class TestFuncs(unittest.TestCase): def setUp(self): self.tracer = Trace(count=0, trace=0, countfuncs=1) self.filemod = my_file_and_modname() - self.maxDiff = None + def test_simple_caller(self): self.tracer.runfunc(traced_func_simple_caller, 1) |