[Python-checkins] python/dist/src/Lib/test bad_coding.py, NONE, 1.1 test_coding.py, NONE, 1.1

nnorwitz@users.sourceforge.net nnorwitz at users.sourceforge.net
Sun Oct 2 03:48:54 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8132/Lib/test

Added Files:
	bad_coding.py test_coding.py 
Log Message:
- Fix segfault with invalid coding.
- SF Bug #772896, unknown encoding results in MemoryError, which is not helpful

I will only backport the segfault fix.  I'll let Anthony decide if he wants
the other changes backported.  I will do the backport if asked.


--- NEW FILE: bad_coding.py ---
# -*- coding: uft-8 -*-

--- NEW FILE: test_coding.py ---

import test.test_support, unittest
import os

class CodingTest(unittest.TestCase):
    def test_bad_coding(self):
        module_name = 'bad_coding'
        self.assertRaises(SyntaxError, __import__, 'test.' + module_name)

        path = os.path.dirname(__file__)
        filename = os.path.join(path, module_name + '.py')
        fp = open(filename)
        text = fp.read()
        fp.close()
        self.assertRaises(SyntaxError, compile, text, filename, 'exec')

def test_main():
    test.test_support.run_unittest(CodingTest)

if __name__ == "__main__":
    test_main()



More information about the Python-checkins mailing list