Commit 502fe19b authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-35412: Add testcase to test_future4 (GH-11131)

Add testcase to test_future4: check unicode literal.
parent b0e08776
from __future__ import unicode_literals
import unittest
class Tests(unittest.TestCase):
def test_unicode_literals(self):
self.assertIsInstance("literal", str)
if __name__ == "__main__":
unittest.main()
Add testcase to ``test_future4``: check unicode literal.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment