__get__ it right: controlling attribute access in PythonNovember 16, 2020 In Python, you use the dot (.) operator to access attributes of an object. Normally, that isn’t something you have to give much thought to. However, when you want to customize what happens during attribute access, things can get complicated. read more
Customizing the compiler and linker used by setuptoolsAugust 27, 2020 This post is about how to customize the compiler and linker used when building a C/C++ extension for Python using setuptools. read more
Using pytest with CythonAugust 13, 2020 This post is about using pytest for testing cdef functions in Cython. read more