Fix miscellaneous typos (#4275)

This commit is contained in:
luzpaz 2017-11-05 07:37:50 -06:00 committed by Serhiy Storchaka
parent cf296537f1
commit a5293b4ff2
50 changed files with 82 additions and 82 deletions

View file

@ -427,7 +427,7 @@ class ThreadTests(BaseTestCase):
t.daemon = True
self.assertIn('daemon', repr(t))
def test_deamon_param(self):
def test_daemon_param(self):
t = threading.Thread()
self.assertFalse(t.daemon)
t = threading.Thread(daemon=False)