2005-10-01 22:48:49 -03:00
|
|
|
|
2008-05-20 18:35:26 -03:00
|
|
|
import test.support, unittest
|
2010-03-17 17:29:51 -03:00
|
|
|
from test.support import TESTFN, unlink, unload
|
2007-11-15 19:19:43 -04:00
|
|
|
import os, sys
|
2005-10-01 22:48:49 -03:00
|
|
|
|
|
|
|
class CodingTest(unittest.TestCase):
|
|
|
|
def test_bad_coding(self):
|
|
|
|
module_name = 'bad_coding'
|
2005-12-18 01:29:30 -04:00
|
|
|
self.verify_bad_module(module_name)
|
|
|
|
|
|
|
|
def test_bad_coding2(self):
|
|
|
|
module_name = 'bad_coding2'
|
|
|
|
self.verify_bad_module(module_name)
|
|
|
|
|
|
|
|
def verify_bad_module(self, module_name):
|
2005-10-01 22:48:49 -03:00
|
|
|
self.assertRaises(SyntaxError, __import__, 'test.' + module_name)
|
|
|
|
|
|
|
|
path = os.path.dirname(__file__)
|
|
|
|
filename = os.path.join(path, module_name + '.py')
|
2010-03-17 17:29:51 -03:00
|
|
|
with open(filename, "rb") as fp:
|
|
|
|
bytes = fp.read()
|
2009-03-02 19:31:26 -04:00
|
|
|
self.assertRaises(SyntaxError, compile, bytes, filename, 'exec')
|
2005-10-01 22:48:49 -03:00
|
|
|
|
2007-08-11 18:31:25 -03:00
|
|
|
def test_exec_valid_coding(self):
|
|
|
|
d = {}
|
|
|
|
exec('# coding: cp949\na = 5\n', d)
|
|
|
|
self.assertEqual(d['a'], 5)
|
|
|
|
|
2007-11-15 19:19:43 -04:00
|
|
|
def test_file_parse(self):
|
|
|
|
# issue1134: all encodings outside latin-1 and utf-8 fail on
|
|
|
|
# multiline strings and long lines (>512 columns)
|
2010-03-17 17:29:51 -03:00
|
|
|
unload(TESTFN)
|
|
|
|
sys.path.insert(0, os.curdir)
|
2007-11-15 20:56:23 -04:00
|
|
|
filename = TESTFN + ".py"
|
2007-11-15 19:19:43 -04:00
|
|
|
f = open(filename, "w")
|
|
|
|
try:
|
|
|
|
f.write("# -*- coding: cp1252 -*-\n")
|
|
|
|
f.write("'''A short string\n")
|
|
|
|
f.write("'''\n")
|
|
|
|
f.write("'A very long string %s'\n" % ("X" * 1000))
|
|
|
|
f.close()
|
|
|
|
|
2007-11-15 20:56:23 -04:00
|
|
|
__import__(TESTFN)
|
2007-11-15 19:19:43 -04:00
|
|
|
finally:
|
|
|
|
f.close()
|
2010-03-17 17:29:51 -03:00
|
|
|
unlink(filename)
|
|
|
|
unlink(filename + "c")
|
|
|
|
unload(TESTFN)
|
|
|
|
del sys.path[0]
|
2007-11-15 19:19:43 -04:00
|
|
|
|
Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73004 | jeffrey.yasskin | 2009-05-28 22:44:31 -0500 (Thu, 28 May 2009) | 5 lines
Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g
-Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without.
There's still a batch of non-prototype warnings in Xlib.h that I don't know how
to fix.
........
r73439 | benjamin.peterson | 2009-06-15 19:29:31 -0500 (Mon, 15 Jun 2009) | 1 line
don't mask encoding errors when decoding a string #6289
........
r73496 | vinay.sajip | 2009-06-21 12:37:27 -0500 (Sun, 21 Jun 2009) | 1 line
Issue #6314: logging.basicConfig() performs extra checks on the "level" argument.
........
r73509 | amaury.forgeotdarc | 2009-06-22 14:33:48 -0500 (Mon, 22 Jun 2009) | 2 lines
#4490 Fix sample code run by "python -m xml.sax.xmlreader"
........
r73529 | r.david.murray | 2009-06-23 13:02:46 -0500 (Tue, 23 Jun 2009) | 4 lines
Fix issue 5230 by having pydoc's safeimport check to see if the import
error was thrown from itself in order to decide if the module can't be
found. Thanks to Lucas Prado Melo for collaborating on the fix and tests.
........
r73564 | amaury.forgeotdarc | 2009-06-25 17:29:29 -0500 (Thu, 25 Jun 2009) | 6 lines
#2016 Fix a crash in function call when the **kwargs dictionary is mutated
during the function call setup.
This even gives a slight speedup, probably because tuple allocation
is faster than PyMem_NEW.
........
r73576 | benjamin.peterson | 2009-06-26 18:37:06 -0500 (Fri, 26 Jun 2009) | 1 line
document is_declared_global()
........
r73577 | benjamin.peterson | 2009-06-27 09:16:23 -0500 (Sat, 27 Jun 2009) | 1 line
link to extensive generator docs in the reference manual
........
r73595 | ezio.melotti | 2009-06-27 18:45:39 -0500 (Sat, 27 Jun 2009) | 1 line
stmt and setup can contain multiple statements, see #5896
........
r73596 | ezio.melotti | 2009-06-27 19:07:45 -0500 (Sat, 27 Jun 2009) | 1 line
Fixed a wrong apostrophe
........
r73605 | georg.brandl | 2009-06-28 07:10:18 -0500 (Sun, 28 Jun 2009) | 1 line
Remove stray pychecker directive.
........
2009-06-28 14:22:03 -03:00
|
|
|
def test_error_from_string(self):
|
|
|
|
# See http://bugs.python.org/issue6289
|
|
|
|
input = "# coding: ascii\n\N{SNOWMAN}".encode('utf-8')
|
2010-03-17 17:29:51 -03:00
|
|
|
with self.assertRaises(SyntaxError) as c:
|
Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73004 | jeffrey.yasskin | 2009-05-28 22:44:31 -0500 (Thu, 28 May 2009) | 5 lines
Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g
-Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without.
There's still a batch of non-prototype warnings in Xlib.h that I don't know how
to fix.
........
r73439 | benjamin.peterson | 2009-06-15 19:29:31 -0500 (Mon, 15 Jun 2009) | 1 line
don't mask encoding errors when decoding a string #6289
........
r73496 | vinay.sajip | 2009-06-21 12:37:27 -0500 (Sun, 21 Jun 2009) | 1 line
Issue #6314: logging.basicConfig() performs extra checks on the "level" argument.
........
r73509 | amaury.forgeotdarc | 2009-06-22 14:33:48 -0500 (Mon, 22 Jun 2009) | 2 lines
#4490 Fix sample code run by "python -m xml.sax.xmlreader"
........
r73529 | r.david.murray | 2009-06-23 13:02:46 -0500 (Tue, 23 Jun 2009) | 4 lines
Fix issue 5230 by having pydoc's safeimport check to see if the import
error was thrown from itself in order to decide if the module can't be
found. Thanks to Lucas Prado Melo for collaborating on the fix and tests.
........
r73564 | amaury.forgeotdarc | 2009-06-25 17:29:29 -0500 (Thu, 25 Jun 2009) | 6 lines
#2016 Fix a crash in function call when the **kwargs dictionary is mutated
during the function call setup.
This even gives a slight speedup, probably because tuple allocation
is faster than PyMem_NEW.
........
r73576 | benjamin.peterson | 2009-06-26 18:37:06 -0500 (Fri, 26 Jun 2009) | 1 line
document is_declared_global()
........
r73577 | benjamin.peterson | 2009-06-27 09:16:23 -0500 (Sat, 27 Jun 2009) | 1 line
link to extensive generator docs in the reference manual
........
r73595 | ezio.melotti | 2009-06-27 18:45:39 -0500 (Sat, 27 Jun 2009) | 1 line
stmt and setup can contain multiple statements, see #5896
........
r73596 | ezio.melotti | 2009-06-27 19:07:45 -0500 (Sat, 27 Jun 2009) | 1 line
Fixed a wrong apostrophe
........
r73605 | georg.brandl | 2009-06-28 07:10:18 -0500 (Sun, 28 Jun 2009) | 1 line
Remove stray pychecker directive.
........
2009-06-28 14:22:03 -03:00
|
|
|
compile(input, "<string>", "exec")
|
2010-03-17 17:29:51 -03:00
|
|
|
expected = "'ascii' codec can't decode byte 0xe2 in position 16: " \
|
|
|
|
"ordinal not in range(128)"
|
|
|
|
self.assertTrue(c.exception.args[0].startswith(expected))
|
|
|
|
|
Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73004 | jeffrey.yasskin | 2009-05-28 22:44:31 -0500 (Thu, 28 May 2009) | 5 lines
Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g
-Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without.
There's still a batch of non-prototype warnings in Xlib.h that I don't know how
to fix.
........
r73439 | benjamin.peterson | 2009-06-15 19:29:31 -0500 (Mon, 15 Jun 2009) | 1 line
don't mask encoding errors when decoding a string #6289
........
r73496 | vinay.sajip | 2009-06-21 12:37:27 -0500 (Sun, 21 Jun 2009) | 1 line
Issue #6314: logging.basicConfig() performs extra checks on the "level" argument.
........
r73509 | amaury.forgeotdarc | 2009-06-22 14:33:48 -0500 (Mon, 22 Jun 2009) | 2 lines
#4490 Fix sample code run by "python -m xml.sax.xmlreader"
........
r73529 | r.david.murray | 2009-06-23 13:02:46 -0500 (Tue, 23 Jun 2009) | 4 lines
Fix issue 5230 by having pydoc's safeimport check to see if the import
error was thrown from itself in order to decide if the module can't be
found. Thanks to Lucas Prado Melo for collaborating on the fix and tests.
........
r73564 | amaury.forgeotdarc | 2009-06-25 17:29:29 -0500 (Thu, 25 Jun 2009) | 6 lines
#2016 Fix a crash in function call when the **kwargs dictionary is mutated
during the function call setup.
This even gives a slight speedup, probably because tuple allocation
is faster than PyMem_NEW.
........
r73576 | benjamin.peterson | 2009-06-26 18:37:06 -0500 (Fri, 26 Jun 2009) | 1 line
document is_declared_global()
........
r73577 | benjamin.peterson | 2009-06-27 09:16:23 -0500 (Sat, 27 Jun 2009) | 1 line
link to extensive generator docs in the reference manual
........
r73595 | ezio.melotti | 2009-06-27 18:45:39 -0500 (Sat, 27 Jun 2009) | 1 line
stmt and setup can contain multiple statements, see #5896
........
r73596 | ezio.melotti | 2009-06-27 19:07:45 -0500 (Sat, 27 Jun 2009) | 1 line
Fixed a wrong apostrophe
........
r73605 | georg.brandl | 2009-06-28 07:10:18 -0500 (Sun, 28 Jun 2009) | 1 line
Remove stray pychecker directive.
........
2009-06-28 14:22:03 -03:00
|
|
|
|
2005-10-01 22:48:49 -03:00
|
|
|
def test_main():
|
2008-05-20 18:35:26 -03:00
|
|
|
test.support.run_unittest(CodingTest)
|
2005-10-01 22:48:49 -03:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|