From: Marc-André Lemburg Date: Wed, 17 Jan 2001 15:07:00 +0000 (+0000) Subject: Changed name of codec to full path name. This allows importing X-Git-Tag: v2.1a1~213 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2ebe8775e03c90539bc820c275d18a413c36a18;p=python Changed name of codec to full path name. This allows importing the test_charmapcodec test via the test package. --- diff --git a/Lib/test/test_charmapcodec.py b/Lib/test/test_charmapcodec.py index ca33cdb23f..ca7b331ded 100644 --- a/Lib/test/test_charmapcodec.py +++ b/Lib/test/test_charmapcodec.py @@ -16,7 +16,7 @@ def check(a, b): print '%s == %s: OK' % (repr(a), repr(b)) # test codec's full path name (see test/testcodec.py) -codecname = 'testcodec' +codecname = 'test.testcodec' check(unicode('abc', codecname), u'abc') check(unicode('xdef', codecname), u'abcdef')