summaryrefslogtreecommitdiff
path: root/Lib/test/test_codecs.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-15 02:14:19 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-04-15 02:14:19 +0000
commit1519a07d0be57bc3488998d535c32516f3ff319a (patch)
tree2f7b997868754f0eeb61252d5527ce6747783198 /Lib/test/test_codecs.py
parent7268f32ddc602f59a1b09eff0845b4fc9299a95a (diff)
downloadcpython-1519a07d0be57bc3488998d535c32516f3ff319a.tar.gz
Correct ?an? ? ?a? with ?Unicode?, ?user?, ?UTF?, etc
This affects documentation, code comments, and a debugging messages.
Diffstat (limited to 'Lib/test/test_codecs.py')
-rw-r--r--Lib/test/test_codecs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py
index b93e0ab0e2..c98afea532 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 an unicode string is supported ang gives the same
+ # Escape-decoding a unicode string is supported ang 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))