Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/heads/3.10
/
.
/
Lib
/
test
/
test_future4.py
blob: b27ca40d2eaeb3eab1a873f5909f83374b0e20c7 [
file
] [
log
] [
blame
] [
edit
]
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
()