Move source links to consistent location and remove wordy, big yellow boxes.
diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst
index 96f31e9..5a32482 100644
--- a/Doc/library/trace.rst
+++ b/Doc/library/trace.rst
@@ -4,17 +4,13 @@
 .. module:: trace
    :synopsis: Trace or track Python statement execution.
 
+**Source code:** :source:`Lib/trace.py`
 
 The :mod:`trace` module allows you to trace program execution, generate
 annotated statement coverage listings, print caller/callee relationships and
 list functions executed during a program run.  It can be used in another program
 or from the command line.
 
-.. seealso::
-
-   Latest version of the :source:`trace module Python source code
-   <Lib/trace.py>`
-
 .. _trace-cli:
 
 Command-Line Usage