Calling Python from C
Posted: Wed Dec 23, 2015 6:30 pm
Say I have a call like
What the C code for nativemodulex.call look like?
Code: Select all
def bar(result):
print(result)
def foo():
nativemodulex.call(bar)
foo()