]> granicus.if.org Git - python/commitdiff
Patch #808362: Fix typos.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 20 Sep 2003 11:09:28 +0000 (11:09 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 20 Sep 2003 11:09:28 +0000 (11:09 +0000)
Doc/lib/libtimeit.tex
Doc/lib/libunittest.tex
Lib/timeit.py

index f008fee31da21ff83f6dd5104eb980b54a7ff4b1..98c1c833ac6f13fb046b46509d18991bcd1d624a 100644 (file)
@@ -122,7 +122,7 @@ The default timer function is platform dependent.  On Windows,
 \function{time.time()}'s granularity is 1/60th of a second; on \UNIX,
 \function{time.clock()} has 1/100th of a second granularity and
 \function{time.time()} is much more precise.  On either platform, the
-default timer functions measures wall clock time, not the CPU time.
+default timer functions measure wall clock time, not the CPU time.
 This means that other processes running on the same computer may
 interfere with the timing.  The best thing to do when accurate timing
 is necessary is to repeat the timing a few times and use the best
index b5976c61b90936745c16b9290daf3ffa68808f52..05617c2aa47bbd9fd3f01e7e7eb722e67b26911b 100644 (file)
@@ -769,7 +769,7 @@ be of interest when inspecting the results of running a set of tests:
 
 
 The following methods of the \class{TestResult} class are used to
-maintain the internal data structures, and mmay be extended in
+maintain the internal data structures, and may be extended in
 subclasses to support additional reporting requirements.  This is
 particularly useful in building tools which support interactive
 reporting while tests are being run.
index d7a3a3d545ee40f991e015ca19992d83281e7dfe..1127aaae40534eade1fa6d925480b33595db713d 100644 (file)
@@ -33,7 +33,7 @@ The difference in default timer function is because on Windows,
 clock() has microsecond granularity but time()'s granularity is 1/60th
 of a second; on Unix, clock() has 1/100th of a second granularity and
 time() is much more precise.  On either platform, the default timer
-functions measures wall clock time, not the CPU time.  This means that
+functions measure wall clock time, not the CPU time.  This means that
 other processes running on the same computer may interfere with the
 timing.  The best thing to do when accurate timing is necessary is to
 repeat the timing a few times and use the best time.  The -r option is