summaryrefslogtreecommitdiffstats
path: root/Modules/_blake2
diff options
context:
space:
mode:
authorAmit Kumar <aktech@users.noreply.github.com>2017-05-29 01:02:26 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2017-05-29 01:02:26 (GMT)
commit2e6bb4484ee1b0da67d1dfcf0816c58602daa5a0 (patch)
treece9751a0399c4d29adae995c6e658d32c8405afb /Modules/_blake2
parentac5bbd43bc7b769c13ae0412cb28a3521f4d4ff1 (diff)
downloadcpython-2e6bb4484ee1b0da67d1dfcf0816c58602daa5a0.zip
cpython-2e6bb4484ee1b0da67d1dfcf0816c58602daa5a0.tar.gz
cpython-2e6bb4484ee1b0da67d1dfcf0816c58602daa5a0.tar.bz2
Add reference to help('FORMATTING') in format() builtin (GH-166)
Diffstat (limited to 'Modules/_blake2')
0 files changed, 0 insertions, 0 deletions
r">Ndef', 'replace', 'ab\x1BNdef'), ) class Test_ISO2022_JP2(multibytecodec_support.TestBase, unittest.TestCase): encoding = 'iso2022_jp_2' tstring = multibytecodec_support.load_teststring('iso2022_jp') codectests = COMMON_CODEC_TESTS + ( (b'ab\x1BNdef', 'replace', 'abdef'), ) class Test_ISO2022_KR(multibytecodec_support.TestBase, unittest.TestCase): encoding = 'iso2022_kr' tstring = multibytecodec_support.load_teststring('iso2022_kr') codectests = COMMON_CODEC_TESTS + ( (b'ab\x1BNdef', 'replace', 'ab\x1BNdef'), ) # iso2022_kr.txt cannot be used to test "chunk coding": the escape # sequence is only written on the first line @unittest.skip('iso2022_kr.txt cannot be used to test "chunk coding"') def test_chunkcoding(self): pass if __name__ == "__main__": unittest.main()