summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSteve Purcell <steve@pythonconsulting.com>2003-10-26 16:38:16 (GMT)
committerSteve Purcell <steve@pythonconsulting.com>2003-10-26 16:38:16 (GMT)
commitcca3491dbe5c8289f170b3a4417c7a73f80cfa80 (patch)
tree2d352f1525b06f87c39b436eb4209d43b18c32ec /Lib
parentd591f666de4c06cd36624fd513d5bc7d8c031ec8 (diff)
downloadcpython-cca3491dbe5c8289f170b3a4417c7a73f80cfa80.zip
cpython-cca3491dbe5c8289f170b3a4417c7a73f80cfa80.tar.gz
cpython-cca3491dbe5c8289f170b3a4417c7a73f80cfa80.tar.bz2
Another instance of the same typo.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/unittest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/unittest.py b/Lib/unittest.py
index 6567410..10108d3 100644
--- a/Lib/unittest.py
+++ b/Lib/unittest.py
@@ -46,7 +46,7 @@ SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
__author__ = "Steve Purcell"
__email__ = "stephen_purcell at yahoo dot com"
-__version__ = "#Revision: 1.61 $"[11:-2]
+__version__ = "#Revision: 1.62 $"[11:-2]
import time
import sys
@@ -341,7 +341,7 @@ class TestCase:
difference rounded to the given number of decimal places
(default 7) and comparing to zero.
- Note that decimal places (from zero) is usually not the same
+ Note that decimal places (from zero) are usually not the same
as significant digits (measured from the most signficant digit).
"""
if round(second-first, places) == 0: