Issue #8890: Stop advertising an insecure use of /tmp in docs
diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst
index 9cd4996..29cb3e1 100644
--- a/Doc/library/trace.rst
+++ b/Doc/library/trace.rst
@@ -200,7 +200,7 @@
# 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=".")