-
Anatomy of a Python C Module
First posted by nmariz (3 years, 10 months ago) -
Writing Python modules in C is relatively easy. The main reason to do so is to increase performance over using Python code. I will demonstrate how to implement a Fibonacci Python function in C.
-

