mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Fix typos mostly in comments, docs and test names (GH-15209)
This commit is contained in:
parent
15119bc2a7
commit
39d87b5471
46 changed files with 60 additions and 60 deletions
|
@ -1651,7 +1651,7 @@ class PatchTest(unittest.TestCase):
|
|||
p1.stop()
|
||||
self.assertEqual(squizz.squozz, 3)
|
||||
|
||||
def test_patch_propogrates_exc_on_exit(self):
|
||||
def test_patch_propagates_exc_on_exit(self):
|
||||
class holder:
|
||||
exc_info = None, None, None
|
||||
|
||||
|
@ -1680,9 +1680,9 @@ class PatchTest(unittest.TestCase):
|
|||
|
||||
self.assertIs(holder.exc_info[0], RuntimeError)
|
||||
self.assertIsNotNone(holder.exc_info[1],
|
||||
'exception value not propgated')
|
||||
'exception value not propagated')
|
||||
self.assertIsNotNone(holder.exc_info[2],
|
||||
'exception traceback not propgated')
|
||||
'exception traceback not propagated')
|
||||
|
||||
|
||||
def test_create_and_specs(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue