Sign in
android
/
platform
/
external
/
python
/
cffi
/
0bacea74242b09153df418def79b0b5668508949
/
.
/
testing
/
cffi1
/
test_dlopen_unicode_literals.py
blob: e792866ecbe89c9843192efadb2b390ab231ca3e [
file
] [
log
] [
blame
]
import
py
,
os
s
=
"""from __future__ import unicode_literals
"""
with
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'test_dlopen.py'
))
as
f
:
s
+=
f
.
read
()
exec
(
py
.
code
.
compile
(
s
))