Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: db455296be5f792b8c12b7cd7f3962b52e4f44ee authored by Ɓukasz Langa on 23 September 2020, 12:36:32 UTC
Python 3.8.6
Tip revision: db45529
test_future4.py
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()
back to top