Staging
v0.5.1
https://github.com/python/cpython
Revision 6979fcdc91114b1ccb16345e26734d6df4cccbc3 authored by Victor Stinner on 28 November 2017, 22:04:12 UTC, committed by GitHub on 28 November 2017, 22:04:12 UTC
* turtledemo: wait until macOS osascript command completes to not
  create a zombie process
* Tools/scripts/treesync.py: declare 'default_answer' and
  'create_files' as globals to modify them with the command line
  arguments. Previously, -y, -n, -f and -a options had no effect.

flake8 warning: "F841 local variable 'p' is assigned to but never
used".
1 parent 5f6d2bb
Raw File
Tip revision: 6979fcdc91114b1ccb16345e26734d6df4cccbc3 authored by Victor Stinner on 28 November 2017, 22:04:12 UTC
bpo-32155: Bugfixes found by flake8 F841 warnings (#4619)
Tip revision: 6979fcd
test_eof.py
"""test script for a few new invalid token catches"""

import unittest
from test import support

class EOFTestCase(unittest.TestCase):
    def test_EOFC(self):
        expect = "EOL while scanning string literal (<string>, line 1)"
        try:
            eval("""'this is a test\
            """)
        except SyntaxError as msg:
            self.assertEqual(str(msg), expect)
        else:
            raise support.TestFailed

    def test_EOFS(self):
        expect = ("EOF while scanning triple-quoted string literal "
                  "(<string>, line 1)")
        try:
            eval("""'''this is a test""")
        except SyntaxError as msg:
            self.assertEqual(str(msg), expect)
        else:
            raise support.TestFailed

if __name__ == "__main__":
    unittest.main()
back to top