summaryrefslogtreecommitdiff
path: root/Doc/library/trace.rst
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2013-02-23 19:26:56 +0100
committerPetri Lehtinen <petri@digip.org>2013-02-23 19:27:49 +0100
commit9f74c6cf7d0fd6188194e7bba8f059843b9c3c89 (patch)
tree428d7473b21eb3eb0d728eab38c90490e455ec8b /Doc/library/trace.rst
parent8b945148e3f98b9c6c51bfaa830e779979713b82 (diff)
downloadcpython-git-9f74c6cf7d0fd6188194e7bba8f059843b9c3c89.tar.gz
Issue #8890: Stop advertising an insecure use of /tmp in docs
Diffstat (limited to 'Doc/library/trace.rst')
-rw-r--r--Doc/library/trace.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst
index c4ddc56cf2..9b52f7d18d 100644
--- a/Doc/library/trace.rst
+++ b/Doc/library/trace.rst
@@ -201,7 +201,7 @@ A simple example demonstrating the use of the programmatic interface::
# run the new command using the given tracer
tracer.run('main()')
- # make a report, placing output in /tmp
+ # make a report, placing output in the current directory
r = tracer.results()
- r.write_results(show_missing=True, coverdir="/tmp")
+ r.write_results(show_missing=True, coverdir=".")