What Every Python Developer Should Know About the CPython ABI

(labs.quansight.org)

22 points | by matt_d 3 days ago

3 comments

  • auntienomen 14 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.
  • 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"

  • 21gafg 1 hour ago
    [dead]