mirror of
https://github.com/python/cpython.git
synced 2025-07-18 16:55:20 +00:00
11 lines
222 B
Python
11 lines
222 B
Python
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()
|