mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
- 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.
This commit is contained in:
parent
d45014b236
commit
40d3781416
7 changed files with 39 additions and 3 deletions
21
Lib/test/test_coding.py
Normal file
21
Lib/test/test_coding.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
|
||||
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()
|
Loading…
Add table
Add a link
Reference in a new issue