summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_codecs.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-16 09:28:57 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-16 09:28:57 (GMT)
commit119e502277d104286620806ef130e3c0d4f439f0 (patch)
tree78150447a369c7e43f4eb8b7a901655f6e66894e /Lib/test/test_codecs.py
parent00ccacc8db8194f15d8af26b788ec36314b990d1 (diff)
downloadcpython-119e502277d104286620806ef130e3c0d4f439f0.zip
cpython-119e502277d104286620806ef130e3c0d4f439f0.tar.gz
cpython-119e502277d104286620806ef130e3c0d4f439f0.tar.bz2
Fix typos in code comments and documentation
Diffstat (limited to 'Lib/test/test_codecs.py')
-rw-r--r--Lib/test/test_codecs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py
index c98afea..0479542 100644
--- a/Lib/test/test_codecs.py
+++ b/Lib/test/test_codecs.py
@@ -2355,7 +2355,7 @@ class TypesTest(unittest.TestCase):
self.assertRaises(TypeError, decoder, "xxx")
def test_unicode_escape(self):
- # Escape-decoding a unicode string is supported ang gives the same
+ # Escape-decoding a unicode string is supported and gives the same
# result as decoding the equivalent ASCII bytes string.
self.assertEqual(codecs.unicode_escape_decode(r"\u1234"), ("\u1234", 6))
self.assertEqual(codecs.unicode_escape_decode(br"\u1234"), ("\u1234", 6))
@@ -2762,7 +2762,7 @@ class TransformCodecTest(unittest.TestCase):
# type and a single str argument.
# Use a local codec registry to avoid appearing to leak objects when
-# registering multiple seach functions
+# registering multiple search functions
_TEST_CODECS = {}
def _get_test_codec(codec_name):