summaryrefslogtreecommitdiff
path: root/Lib/trace.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-04-24 22:45:13 +0000
committerTim Peters <tim.peters@gmail.com>2006-04-24 22:45:13 +0000
commitc4dc03bd30db9fbc2334afd6ec4e551630ae9e7c (patch)
tree891df18346907685c69c58085e1dfea11a38866c /Lib/trace.py
parentfe1cc3671cad9df823ba4ccf3c58e31d4c0e349d (diff)
downloadcpython-c4dc03bd30db9fbc2334afd6ec4e551630ae9e7c.tar.gz
Whitespace normalization.
Diffstat (limited to 'Lib/trace.py')
-rw-r--r--Lib/trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py
index 16f4b04e74..ca6294e031 100644
--- a/Lib/trace.py
+++ b/Lib/trace.py
@@ -40,7 +40,7 @@ Sample use, programmatically
# create a Trace object, telling it what to ignore, and whether to
# do tracing or line-counting or both.
tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], trace=0,
- count=1)
+ count=1)
# run the new command using the given tracer
tracer.run('main()')
# make a report, placing output in /tmp