Kaydet (Commit) 685ef4e6 authored tarafından Guido van Rossum's avatar Guido van Rossum

According to Tim Peters, there should be 'print' statements in one

particular example.
üst cce1090d
...@@ -566,9 +566,9 @@ in section Limitations above). ...@@ -566,9 +566,9 @@ in section Limitations above).
\begin{verbatim} \begin{verbatim}
import profile import profile
pr = profile.Profile() pr = profile.Profile()
pr.calibrate(100) print pr.calibrate(100)
pr.calibrate(100) print pr.calibrate(100)
pr.calibrate(100) print pr.calibrate(100)
\end{verbatim} \end{verbatim}
The argument to \method{calibrate()} is the number of times to try to The argument to \method{calibrate()} is the number of times to try to
......
...@@ -566,9 +566,9 @@ in section Limitations above). ...@@ -566,9 +566,9 @@ in section Limitations above).
\begin{verbatim} \begin{verbatim}
import profile import profile
pr = profile.Profile() pr = profile.Profile()
pr.calibrate(100) print pr.calibrate(100)
pr.calibrate(100) print pr.calibrate(100)
pr.calibrate(100) print pr.calibrate(100)
\end{verbatim} \end{verbatim}
The argument to \method{calibrate()} is the number of times to try to The argument to \method{calibrate()} is the number of times to try to
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment