diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-26 05:35:26 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-26 05:35:26 +0000 |
commit | 46f50726a0047ae81d478c3a206f587b8f35ed08 (patch) | |
tree | 2046fa568e0abebe8f055b30fbbd4585a429a708 /Lib/test/datetimetester.py | |
parent | eb9aca3c071aab925831a389ab26816c170dc159 (diff) | |
download | cpython-git-46f50726a0047ae81d478c3a206f587b8f35ed08.tar.gz |
Issue #27076: Doc, comment and tests spelling fixes
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
Diffstat (limited to 'Lib/test/datetimetester.py')
-rw-r--r-- | Lib/test/datetimetester.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py index b9071640c4..f5222c7e48 100644 --- a/Lib/test/datetimetester.py +++ b/Lib/test/datetimetester.py @@ -1227,7 +1227,7 @@ class TestDate(HarmlessMixedComparison, unittest.TestCase): #self.assertRaises(ValueError, t.strftime, "%#") #oh well, some systems just ignore those invalid ones. - #at least, excercise them to make sure that no crashes + #at least, exercise them to make sure that no crashes #are generated for f in ["%e", "%", "%#"]: try: @@ -2476,7 +2476,7 @@ class TestTime(HarmlessMixedComparison, unittest.TestCase): self.theclass(bytes([1] * len(base)), 'EST') # A mixin for classes with a tzinfo= argument. Subclasses must define -# theclass as a class atribute, and theclass(1, 1, 1, tzinfo=whatever) +# theclass as a class attribute, and theclass(1, 1, 1, tzinfo=whatever) # must be legit (which is true for time and datetime). class TZInfoBase: |