Hi I am trying to write a C code to call a class function in a python module. Here's my python module:
def fib(n): # write Fibonacci series up to n a, b = 0, 1 while b < n: print b, a, b = b, a+b def fib2(n): # return Fibonacci series up to n result = [] a, b = 0, 1 while b < n: result.append(b) a, b = b, a+b return result class MyClass: "A simple example class" i = 12345 def f(self): return 'hello world' Can anybody tell me how to call "f" in my C code? Thanks, Tuhin -- http://mail.python.org/mailman/listinfo/python-list