12 lines
438 B
Python
Executable File
12 lines
438 B
Python
Executable File
###################################################################################################
|
|
# Executing CPython in external process.
|
|
###################################################################################################
|
|
|
|
#Calling a method: return values must be JSON serializable
|
|
ret = exec_cpython("cpython", [], "test_pandas")
|
|
print ret
|
|
|
|
#Executing a module
|
|
ret = exec_cpython("cpython", [])
|
|
print ret
|