Issue #27076: Merge spelling from 3.5

This commit is contained in:
Martin Panter 2016-05-26 06:03:19 +00:00
commit 3e04d5b306
66 changed files with 232 additions and 232 deletions

View file

@ -1228,7 +1228,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:
@ -2513,7 +2513,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: