From: Fred Drake Date: Thu, 14 Jun 2001 13:57:49 +0000 (+0000) Subject: Fix an improperly placed comma. X-Git-Tag: v2.1.1c1~79 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=76ce2aaab526da85e26e59f9c0f977f79da36682;p=thirdparty%2FPython%2Fcpython.git Fix an improperly placed comma. --- diff --git a/Doc/lib/libprofile.tex b/Doc/lib/libprofile.tex index a8861c3f8ae2..141b9d2f24b9 100644 --- a/Doc/lib/libprofile.tex +++ b/Doc/lib/libprofile.tex @@ -616,7 +616,7 @@ t = t[0] + t[1] - self.t # no calibration constant You can also achieve the same results using a derived class (and the profiler will actually run equally fast!!), but the above method is the simplest to use. I could have made the profiler ``self -calibrating'', but it would have made the initialization of the +calibrating,'' but it would have made the initialization of the profiler class slower, and would have required some \emph{very} fancy coding, or else the use of a variable where the constant \samp{.00053} was placed in the code shown. This is a \strong{VERY} critical