summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/datetimetester.py4
-rw-r--r--Lib/test/decimaltestdata/abs.decTest2
-rw-r--r--Lib/test/decimaltestdata/extra.decTest2
-rw-r--r--Lib/test/libregrtest/refleak.py2
-rw-r--r--Lib/test/pickletester.py4
-rw-r--r--Lib/test/support/threading_helper.py2
-rw-r--r--Lib/test/test__xxsubinterpreters.py2
-rw-r--r--Lib/test/test_asyncio/test_streams.py2
-rw-r--r--Lib/test/test_asyncio/test_subprocess.py2
-rw-r--r--Lib/test/test_asyncio/test_tasks.py4
-rw-r--r--Lib/test/test_capi.py2
-rw-r--r--Lib/test/test_collections.py2
-rw-r--r--Lib/test/test_dataclasses.py2
-rw-r--r--Lib/test/test_descr.py2
-rw-r--r--Lib/test/test_dict.py4
-rw-r--r--Lib/test/test_dict_version.py2
-rw-r--r--Lib/test/test_dtrace.py2
-rw-r--r--Lib/test/test_email/test_message.py2
-rw-r--r--Lib/test/test_embed.py4
-rw-r--r--Lib/test/test_exceptions.py2
-rw-r--r--Lib/test/test_future.py2
-rw-r--r--Lib/test/test_lltrace.py2
-rw-r--r--Lib/test/test_locale.py2
-rw-r--r--Lib/test/test_pathlib.py4
-rw-r--r--Lib/test/test_strftime.py2
-rw-r--r--Lib/test/test_sys.py4
-rw-r--r--Lib/test/test_tempfile.py6
-rw-r--r--Lib/test/test_time.py4
-rw-r--r--Lib/test/test_unparse.py2
-rw-r--r--Lib/test/test_weakref.py2
-rw-r--r--Lib/test/test_wsgiref.py2
-rw-r--r--Lib/test/test_xml_etree.py2
-rw-r--r--Lib/test/test_xmlrpc.py2
33 files changed, 43 insertions, 43 deletions
diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py
index 6414f1a..9f551d9 100644
--- a/Lib/test/datetimetester.py
+++ b/Lib/test/datetimetester.py
@@ -4064,7 +4064,7 @@ class TestDateTimeTZ(TestDateTime, TZInfoBase, unittest.TestCase):
self.assertEqual(t1, t1)
self.assertEqual(t2, t2)
- # Equal afer adjustment.
+ # Equal after adjustment.
t1 = self.theclass(1, 12, 31, 23, 59, tzinfo=FixedOffset(1, ""))
t2 = self.theclass(2, 1, 1, 3, 13, tzinfo=FixedOffset(3*60+13+2, ""))
self.assertEqual(t1, t2)
@@ -4903,7 +4903,7 @@ class TestTimezoneConversions(unittest.TestCase):
# OTOH, these fail! Don't enable them. The difficulty is that
# the edge case tests assume that every hour is representable in
# the "utc" class. This is always true for a fixed-offset tzinfo
- # class (lke utc_real and utc_fake), but not for Eastern or Central.
+ # class (like utc_real and utc_fake), but not for Eastern or Central.
# For these adjacent DST-aware time zones, the range of time offsets
# tested ends up creating hours in the one that aren't representable
# in the other. For the same reason, we would see failures in the
diff --git a/Lib/test/decimaltestdata/abs.decTest b/Lib/test/decimaltestdata/abs.decTest
index 01f73d7..569b8fc 100644
--- a/Lib/test/decimaltestdata/abs.decTest
+++ b/Lib/test/decimaltestdata/abs.decTest
@@ -20,7 +20,7 @@
version: 2.59
-- This set of tests primarily tests the existence of the operator.
--- Additon, subtraction, rounding, and more overflows are tested
+-- Addition, subtraction, rounding, and more overflows are tested
-- elsewhere.
precision: 9
diff --git a/Lib/test/decimaltestdata/extra.decTest b/Lib/test/decimaltestdata/extra.decTest
index b630d8e..3129120 100644
--- a/Lib/test/decimaltestdata/extra.decTest
+++ b/Lib/test/decimaltestdata/extra.decTest
@@ -156,7 +156,7 @@ extr1302 fma -Inf 0E-456 sNaN148 -> NaN Invalid_operation
-- max/min/max_mag/min_mag bug in 2.5.2/2.6/3.0: max(NaN, finite) gave
-- incorrect answers when the finite number required rounding; similarly
--- for the other thre functions
+-- for the other three functions
maxexponent: 999
minexponent: -999
precision: 6
diff --git a/Lib/test/libregrtest/refleak.py b/Lib/test/libregrtest/refleak.py
index 7c7086a..b56a848 100644
--- a/Lib/test/libregrtest/refleak.py
+++ b/Lib/test/libregrtest/refleak.py
@@ -112,7 +112,7 @@ def dash_R(ns, test_name, test_func):
# These checkers return False on success, True on failure
def check_rc_deltas(deltas):
- # Checker for reference counters and memomry blocks.
+ # Checker for reference counters and memory blocks.
#
# bpo-30776: Try to ignore false positives:
#
diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py
index 25283f8..3e2c781 100644
--- a/Lib/test/pickletester.py
+++ b/Lib/test/pickletester.py
@@ -3723,7 +3723,7 @@ class AbstractHookTests:
self.assertEqual(new_f, 5)
self.assertEqual(some_str, 'some str')
- # math.log does not have its usual reducer overriden, so the
+ # math.log does not have its usual reducer overridden, so the
# custom reduction callback should silently direct the pickler
# to the default pickling by attribute, by returning
# NotImplemented
@@ -3740,7 +3740,7 @@ class AbstractHookTests:
def test_reducer_override_no_reference_cycle(self):
# bpo-39492: reducer_override used to induce a spurious reference cycle
# inside the Pickler object, that could prevent all serialized objects
- # from being garbage-collected without explicity invoking gc.collect.
+ # from being garbage-collected without explicitly invoking gc.collect.
for proto in range(0, pickle.HIGHEST_PROTOCOL + 1):
with self.subTest(proto=proto):
diff --git a/Lib/test/support/threading_helper.py b/Lib/test/support/threading_helper.py
index 0632577..92a64e8 100644
--- a/Lib/test/support/threading_helper.py
+++ b/Lib/test/support/threading_helper.py
@@ -157,7 +157,7 @@ class catch_threading_exception:
Context manager catching threading.Thread exception using
threading.excepthook.
- Attributes set when an exception is catched:
+ Attributes set when an exception is caught:
* exc_type
* exc_value
diff --git a/Lib/test/test__xxsubinterpreters.py b/Lib/test/test__xxsubinterpreters.py
index 81bce2e..177a8a6 100644
--- a/Lib/test/test__xxsubinterpreters.py
+++ b/Lib/test/test__xxsubinterpreters.py
@@ -1221,7 +1221,7 @@ class ChannelTests(TestBase):
import _xxsubinterpreters as _interpreters
obj = _interpreters.channel_recv({cid})
"""))
- # Test for channel that has boths ends associated to an interpreter.
+ # Test for channel that has both ends associated to an interpreter.
send_interps = interpreters.channel_list_interpreters(cid, send=True)
recv_interps = interpreters.channel_list_interpreters(cid, send=False)
self.assertEqual(send_interps, [interp0])
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py
index 6eaa289..a6ea24c 100644
--- a/Lib/test/test_asyncio/test_streams.py
+++ b/Lib/test/test_asyncio/test_streams.py
@@ -711,7 +711,7 @@ class StreamTests(test_utils.TestCase):
# See asyncio issue 168. This test is derived from the example
# subprocess_attach_read_pipe.py, but we configure the
# StreamReader's limit so that twice it is less than the size
- # of the data writter. Also we must explicitly attach a child
+ # of the data writer. Also we must explicitly attach a child
# watcher to the event loop.
code = """\
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py
index 3cf8818..14fa6dd 100644
--- a/Lib/test/test_asyncio/test_subprocess.py
+++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -228,7 +228,7 @@ class SubprocessMixin:
# buffer large enough to feed the whole pipe buffer
large_data = b'x' * support.PIPE_MAX_SIZE
- # the program ends before the stdin can be feeded
+ # the program ends before the stdin can be fed
proc = self.loop.run_until_complete(
asyncio.create_subprocess_exec(
sys.executable, '-c', 'pass',
diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py
index 9498c72..ff627a6 100644
--- a/Lib/test/test_asyncio/test_tasks.py
+++ b/Lib/test/test_asyncio/test_tasks.py
@@ -3673,7 +3673,7 @@ class RunCoroutineThreadsafeTests(test_utils.TestCase):
self.assertTrue(task.done())
def test_run_coroutine_threadsafe_task_cancelled(self):
- """Test coroutine submission from a tread to an event loop
+ """Test coroutine submission from a thread to an event loop
when the task is cancelled."""
callback = lambda: self.target(cancel=True)
future = self.loop.run_in_executor(None, callback)
@@ -3681,7 +3681,7 @@ class RunCoroutineThreadsafeTests(test_utils.TestCase):
self.loop.run_until_complete(future)
def test_run_coroutine_threadsafe_task_factory_exception(self):
- """Test coroutine submission from a tread to an event loop
+ """Test coroutine submission from a thread to an event loop
when the task factory raise an exception."""
def task_factory(loop, coro):
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
index db26b9b..6ed5ecd 100644
--- a/Lib/test/test_capi.py
+++ b/Lib/test/test_capi.py
@@ -264,7 +264,7 @@ class CAPITest(unittest.TestCase):
def test_getitem_with_error(self):
# Test _Py_CheckSlotResult(). Raise an exception and then calls
- # PyObject_GetItem(): check that the assertion catchs the bug.
+ # PyObject_GetItem(): check that the assertion catches the bug.
# PyObject_GetItem() must not be called with an exception set.
code = textwrap.dedent("""
import _testcapi
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py
index 1f659d7..75af29b 100644
--- a/Lib/test/test_collections.py
+++ b/Lib/test/test_collections.py
@@ -1594,7 +1594,7 @@ class TestCollectionABCs(ABCTestCase):
self.assertSetEqual(set(s1), set(s2))
def test_Set_from_iterable(self):
- """Verify _from_iterable overriden to an instance method works."""
+ """Verify _from_iterable overridden to an instance method works."""
class SetUsingInstanceFromIterable(MutableSet):
def __init__(self, values, created_by):
if not created_by:
diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py
index 33c9fcd..a1d9112 100644
--- a/Lib/test/test_dataclasses.py
+++ b/Lib/test/test_dataclasses.py
@@ -3695,7 +3695,7 @@ class TestKeywordArgs(unittest.TestCase):
with self.assertRaisesRegex(TypeError, msg):
B(3, 4, 5)
- # Explicitely make a field that follows KW_ONLY be non-keyword-only.
+ # Explicitly make a field that follows KW_ONLY be non-keyword-only.
@dataclass
class C:
a: int
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index b8862fd..3df69ba 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -5723,7 +5723,7 @@ class MroTest(unittest.TestCase):
def test_incomplete_super(self):
"""
- Attrubute lookup on a super object must be aware that
+ Attribute lookup on a super object must be aware that
its target type can be uninitialized (type->tp_mro == NULL).
"""
class M(DebugHelperMeta):
diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py
index 666cd81..54d1002 100644
--- a/Lib/test/test_dict.py
+++ b/Lib/test/test_dict.py
@@ -1051,7 +1051,7 @@ class DictTest(unittest.TestCase):
@support.cpython_only
def test_splittable_pop_pending(self):
- """pop a pending key in a splitted table should not crash"""
+ """pop a pending key in a split table should not crash"""
a, b = self.make_shared_key_dict(2)
a['a'] = 4
@@ -1398,7 +1398,7 @@ class DictTest(unittest.TestCase):
self.assertRaises(StopIteration, next, r)
def test_reverse_iterator_for_empty_dict(self):
- # bpo-38525: revered iterator should work properly
+ # bpo-38525: reversed iterator should work properly
# empty dict is directly used for reference count test
self.assertEqual(list(reversed({})), [])
diff --git a/Lib/test/test_dict_version.py b/Lib/test/test_dict_version.py
index 8cdccad..243084c 100644
--- a/Lib/test/test_dict_version.py
+++ b/Lib/test/test_dict_version.py
@@ -1,5 +1,5 @@
"""
-Test implementation of the PEP 509: dictionary versionning.
+Test implementation of the PEP 509: dictionary versioning.
"""
import unittest
from test.support import import_helper
diff --git a/Lib/test/test_dtrace.py b/Lib/test/test_dtrace.py
index 1db73cc..3957077 100644
--- a/Lib/test/test_dtrace.py
+++ b/Lib/test/test_dtrace.py
@@ -34,7 +34,7 @@ def normalize_trace_output(output):
return "\n".join(result)
except (IndexError, ValueError):
raise AssertionError(
- "tracer produced unparseable output:\n{}".format(output)
+ "tracer produced unparsable output:\n{}".format(output)
)
diff --git a/Lib/test/test_email/test_message.py b/Lib/test/test_email/test_message.py
index 920a3d6..4c754bf 100644
--- a/Lib/test/test_email/test_message.py
+++ b/Lib/test/test_email/test_message.py
@@ -433,7 +433,7 @@ class TestEmailMessageBase:
--===
Content-Type: text/plain
- Your message has bounced, ser.
+ Your message has bounced, sir.
--===
Content-Type: message/rfc822
diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py
index 0a66e7f..da9b555 100644
--- a/Lib/test/test_embed.py
+++ b/Lib/test/test_embed.py
@@ -250,7 +250,7 @@ class EmbeddingTests(EmbeddingTestsMixin, unittest.TestCase):
def test_pre_initialization_api(self):
"""
- Checks some key parts of the C-API that need to work before the runtine
+ Checks some key parts of the C-API that need to work before the runtime
is initialized (via Py_Initialize()).
"""
env = dict(os.environ, PYTHONPATH=os.pathsep.join(sys.path))
@@ -1157,7 +1157,7 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):
'base_prefix': '',
'exec_prefix': '',
'base_exec_prefix': '',
- # overriden by PyConfig
+ # overridden by PyConfig
'program_name': 'conf_program_name',
'base_executable': 'conf_executable',
'executable': 'conf_executable',
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
index 143b856..d04e5f5 100644
--- a/Lib/test/test_exceptions.py
+++ b/Lib/test/test_exceptions.py
@@ -2281,7 +2281,7 @@ class SyntaxErrorTests(unittest.TestCase):
abcdefg
SyntaxError: bad bad
""")),
- # End offset pass the source lenght
+ # End offset pass the source length
(("bad.py", 1, 2, "abcdefg", 1, 100),
dedent(
"""
diff --git a/Lib/test/test_future.py b/Lib/test/test_future.py
index 4ef1123..5a3944e 100644
--- a/Lib/test/test_future.py
+++ b/Lib/test/test_future.py
@@ -329,7 +329,7 @@ class AnnotationsFutureTestCase(unittest.TestCase):
def test_fstring_debug_annotations(self):
# f-strings with '=' don't round trip very well, so set the expected
- # result explicitely.
+ # result explicitly.
self.assertAnnotationEqual("f'{x=!r}'", expected="f'x={x!r}'")
self.assertAnnotationEqual("f'{x=:}'", expected="f'x={x:}'")
self.assertAnnotationEqual("f'{x=:.2f}'", expected="f'x={x:.2f}'")
diff --git a/Lib/test/test_lltrace.py b/Lib/test/test_lltrace.py
index 8f1a92e..06e33f4 100644
--- a/Lib/test/test_lltrace.py
+++ b/Lib/test/test_lltrace.py
@@ -12,7 +12,7 @@ class TestLLTrace(unittest.TestCase):
# If this test fails, it will reproduce a crash reported as
# bpo-34113. The crash happened at the command line console of
# debug Python builds with __ltrace__ enabled (only possible in console),
- # when the interal Python stack was negatively adjusted
+ # when the internal Python stack was negatively adjusted
with open(os_helper.TESTFN, 'w', encoding='utf-8') as fd:
self.addCleanup(os_helper.unlink, os_helper.TESTFN)
fd.write(textwrap.dedent("""\
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py
index 2c788f2..f844e62 100644
--- a/Lib/test/test_locale.py
+++ b/Lib/test/test_locale.py
@@ -496,7 +496,7 @@ class NormalizeTest(unittest.TestCase):
class TestMiscellaneous(unittest.TestCase):
def test_defaults_UTF8(self):
# Issue #18378: on (at least) macOS setting LC_CTYPE to "UTF-8" is
- # valid. Futhermore LC_CTYPE=UTF is used by the UTF-8 locale coercing
+ # valid. Furthermore LC_CTYPE=UTF is used by the UTF-8 locale coercing
# during interpreter startup (on macOS).
import _locale
import os
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py
index e716f4d..5f6d9f4 100644
--- a/Lib/test/test_pathlib.py
+++ b/Lib/test/test_pathlib.py
@@ -324,7 +324,7 @@ class _BasePurePathTest(object):
self.assertFalse(P('b/py').match('b.py'))
self.assertFalse(P('/a.py').match('b.py'))
self.assertFalse(P('b.py/c').match('b.py'))
- # Wilcard relative pattern.
+ # Wildcard relative pattern.
self.assertTrue(P('b.py').match('*.py'))
self.assertTrue(P('a/b.py').match('*.py'))
self.assertTrue(P('/a/b.py').match('*.py'))
@@ -1284,7 +1284,7 @@ class PureWindowsPathTest(_BasePurePathTest, unittest.TestCase):
self.assertIs(False, P('/foo/bar').is_reserved())
# UNC paths are never reserved.
self.assertIs(False, P('//my/share/nul/con/aux').is_reserved())
- # Case-insenstive DOS-device names are reserved.
+ # Case-insensitive DOS-device names are reserved.
self.assertIs(True, P('nul').is_reserved())
self.assertIs(True, P('aux').is_reserved())
self.assertIs(True, P('prn').is_reserved())
diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py
index ec305e5..be43c49 100644
--- a/Lib/test/test_strftime.py
+++ b/Lib/test/test_strftime.py
@@ -114,7 +114,7 @@ class StrftimeTest(unittest.TestCase):
)
for e in expectations:
- # musn't raise a value error
+ # mustn't raise a value error
try:
result = time.strftime(e[0], now)
except ValueError as error:
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 8717def..35da72c 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -379,7 +379,7 @@ class SysModuleTest(unittest.TestCase):
self.assertTrue(frame is sys._getframe())
# Verify that the captured thread frame is blocked in g456, called
- # from f123. This is a litte tricky, since various bits of
+ # from f123. This is a little tricky, since various bits of
# threading.py are also in the thread's call stack.
frame = d.pop(thread_id)
stack = traceback.extract_stack(frame)
@@ -446,7 +446,7 @@ class SysModuleTest(unittest.TestCase):
self.assertEqual((None, None, None), d.pop(main_id))
# Verify that the captured thread frame is blocked in g456, called
- # from f123. This is a litte tricky, since various bits of
+ # from f123. This is a little tricky, since various bits of
# threading.py are also in the thread's call stack.
exc_type, exc_value, exc_tb = d.pop(thread_id)
stack = traceback.extract_stack(exc_tb.tb_frame)
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py
index f1d4837..96946a2 100644
--- a/Lib/test/test_tempfile.py
+++ b/Lib/test/test_tempfile.py
@@ -1435,7 +1435,7 @@ class TestTemporaryDirectory(BaseTestCase):
self.assertEqual(
temp_path.exists(),
sys.platform.startswith("win"),
- f"TemporaryDirectory {temp_path!s} existance state unexpected")
+ f"TemporaryDirectory {temp_path!s} existence state unexpected")
temp_dir.cleanup()
self.assertFalse(
temp_path.exists(),
@@ -1494,7 +1494,7 @@ class TestTemporaryDirectory(BaseTestCase):
self.assertEqual(
temp_path.exists(),
sys.platform.startswith("win"),
- f"TemporaryDirectory {temp_path!s} existance state unexpected")
+ f"TemporaryDirectory {temp_path!s} existence state unexpected")
def test_del_on_shutdown(self):
# A TemporaryDirectory may be cleaned up during shutdown
@@ -1559,7 +1559,7 @@ class TestTemporaryDirectory(BaseTestCase):
self.assertEqual(
temp_path.exists(),
sys.platform.startswith("win"),
- f"TemporaryDirectory {temp_path!s} existance state unexpected")
+ f"TemporaryDirectory {temp_path!s} existence state unexpected")
err = err.decode('utf-8', 'backslashreplace')
self.assertNotIn("Exception", err)
self.assertNotIn("Error", err)
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
index db929bd..875615a 100644
--- a/Lib/test/test_time.py
+++ b/Lib/test/test_time.py
@@ -436,8 +436,8 @@ class TimeTestCase(unittest.TestCase):
@unittest.skipUnless(platform.libc_ver()[0] != 'glibc',
"disabled because of a bug in glibc. Issue #13309")
def test_mktime_error(self):
- # It may not be possible to reliably make mktime return error
- # on all platfom. This will make sure that no other exception
+ # It may not be possible to reliably make mktime return an error
+ # on all platforms. This will make sure that no other exception
# than OverflowError is raised for an extreme value.
tt = time.gmtime(self.t)
tzname = time.strftime('%Z', tt)
diff --git a/Lib/test/test_unparse.py b/Lib/test/test_unparse.py
index 9f67b49..33e1149 100644
--- a/Lib/test/test_unparse.py
+++ b/Lib/test/test_unparse.py
@@ -408,7 +408,7 @@ class UnparseTestCase(ASTTestCase):
class CosmeticTestCase(ASTTestCase):
- """Test if there are cosmetic issues caused by unnecesary additions"""
+ """Test if there are cosmetic issues caused by unnecessary additions"""
def test_simple_expressions_parens(self):
self.check_src_roundtrip("(a := b)")
diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py
index 5a3e59c..096833d 100644
--- a/Lib/test/test_weakref.py
+++ b/Lib/test/test_weakref.py
@@ -1472,7 +1472,7 @@ class MappingTestCase(TestBase):
o = Object(123456)
with testcontext():
n = len(dict)
- # Since underlaying dict is ordered, first item is popped
+ # Since underlying dict is ordered, first item is popped
dict.pop(next(dict.keys()))
self.assertEqual(len(dict), n - 1)
dict[o] = o
diff --git a/Lib/test/test_wsgiref.py b/Lib/test/test_wsgiref.py
index 93ca6b9..42094f4 100644
--- a/Lib/test/test_wsgiref.py
+++ b/Lib/test/test_wsgiref.py
@@ -580,7 +580,7 @@ class HandlerTests(TestCase):
# Test handler.environ as a dict
expected = {}
setup_testing_defaults(expected)
- # Handler inherits os_environ variables which are not overriden
+ # Handler inherits os_environ variables which are not overridden
# by SimpleHandler.add_cgi_vars() (SimpleHandler.base_env)
for key, value in os_environ.items():
if key not in expected:
diff --git a/Lib/test/test_xml_etree.py b/Lib/test/test_xml_etree.py
index 5a8824a..285559a 100644
--- a/Lib/test/test_xml_etree.py
+++ b/Lib/test/test_xml_etree.py
@@ -3331,7 +3331,7 @@ class TreeBuilderTest(unittest.TestCase):
self._check_element_factory_class(MyElement)
def test_element_factory_pure_python_subclass(self):
- # Mimick SimpleTAL's behaviour (issue #16089): both versions of
+ # Mimic SimpleTAL's behaviour (issue #16089): both versions of
# TreeBuilder should be able to cope with a subclass of the
# pure Python Element class.
base = ET._Element_Py
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py
index 85e27ad..1f06f5f 100644
--- a/Lib/test/test_xmlrpc.py
+++ b/Lib/test/test_xmlrpc.py
@@ -561,7 +561,7 @@ class DateTimeTestCase(unittest.TestCase):
class BinaryTestCase(unittest.TestCase):
- # XXX What should str(Binary(b"\xff")) return? I'm chosing "\xff"
+ # XXX What should str(Binary(b"\xff")) return? I'm choosing "\xff"
# for now (i.e. interpreting the binary data as Latin-1-encoded
# text). But this feels very unsatisfactory. Perhaps we should
# only define repr(), and return r"Binary(b'\xff')" instead?