blob: dc955a57e94a99b08fda88c7f12c4b2f3fb2549d (
plain)
1
2
3
4
5
6
7
8
9
|
import 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(compile(s, filename='test_dlopen.py', mode='exec'))
|