[Python-checkins] devguide: Fix a module name.

brett.cannon python-checkins at python.org
Thu Feb 3 01:33:30 CET 2011


brett.cannon pushed dfbf819afa55 to devguide:

http://hg.python.org/devguide/rev/dfbf819afa55
changeset:   226:dfbf819afa55
tag:         tip
user:        Brett Cannon <brett at python.org>
date:        Wed Feb 02 16:33:25 2011 -0800
summary:
  Fix a module name.

files:
  coverage.rst

diff --git a/coverage.rst b/coverage.rst
--- a/coverage.rst
+++ b/coverage.rst
@@ -58,7 +58,7 @@
 It should be noted that a quirk of running coverage over Python's own stdlib is
 that certain modules are imported as part of interpreter startup. Those modules
 required by Python itself will not be viewed as executed by the coverage tools
-and thus look like they have very poor coverage (e.g., the :py:mod:`stats`
+and thus look like they have very poor coverage (e.g., the :py:mod:`stat`
 module). In these instances the module will appear to not have any coverage of
 global statements but will have proper coverage of local statements (e.g.,
 function definitions will be not be traced, but the function bodies will).

--
Repository URL: http://hg.python.org/devguide


More information about the Python-checkins mailing list