What Every Python Developer Should Know About the CPython ABI
22 points
3 days ago
| 2 comments
| labs.quansight.org
| HN
auntienomen
4 minutes ago
[-]
Glad to see that Cython got a shout out here. It's not that widely used, but it's a lovely experience. It uses the CPython ABI to drastically reduce the friction of switching between C & Python.
reply
voidUpdate
1 hour ago
[-]
> import numpy

> np.array([1,2])

NameError: name 'np' is not defined

I think the article probably wanted "import numpy as np"

reply