mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-14 18:50:49 +08:00
7 lines
151 B
Python
7 lines
151 B
Python
# flake8: noqa
|
|
import sys
|
|
|
|
if sys.version_info[:2] < (3, 0):
|
|
def exec_file_wrapper(fpath, g_vars, l_vars):
|
|
execfile(fpath, g_vars, l_vars)
|