[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/faasm/python/main/func/python/ctypes_check.py [Back]  [Original]

from ctypes import CDLL


def faasm_main():
    this_mod = CDLL(None)
    other_mod = CDLL("/lib/python3.8/lib-dynload/_ctypes.so")

    print("Root module = {}".format(this_mod))
    print("Other module = {}".format(other_mod))

    return 0

Web Proxy Viewer  |  New URL  |  Original Page