diff options
Diffstat (limited to 'Lib/test/output/test_charmapcodec')
-rw-r--r-- | Lib/test/output/test_charmapcodec | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/test/output/test_charmapcodec b/Lib/test/output/test_charmapcodec index 9b15894..646ccd3 100644 --- a/Lib/test/output/test_charmapcodec +++ b/Lib/test/output/test_charmapcodec @@ -1 +1,16 @@ test_charmapcodec +u'abc' == u'abc': OK +u'abcdef' == u'abcdef': OK +u'defabc' == u'defabc': OK +u'dabcf' == u'dabcf': OK +u'dabcfabc' == u'dabcfabc': OK +'abc' == 'abc': OK +'abcdef' == 'abcdef': OK +'defabc' == 'defabc': OK +'dabcf' == 'dabcf': OK +'dabcfabc' == 'dabcfabc': OK +u'def' == u'def': OK +u'def' == u'def': OK +u'df' == u'df': OK +u'df' == u'df': OK +\001 maps to undefined: OK |