Daniyal Ahmed

Python Developer since 2020 | Release Manager for Python 3.8 | Creator of Black code formatter | Contributing to Python's growth and adoption.
152 Posts

How to Fix Fatal Python Error: PyThreadState_Get When Using SWIG on macOS

I recently ran into one of those maddening bugs that make you question whether your toolchain is cursed. I was working on a Python...

How to Fix a Fatal Python Error in Your First pytest-qt Test

When I wrote my very first test with pytest qt, I was greeted not with a helpful failure but with a scary red banner: Fatal...

How to Fix a TypeError in Python When Apply User Define Function to NumPy Array

When I started experimenting with Python and NumPy, one of the first challenges I faced was applying custom transformations to arrays. It looked simple...

How Can I Fix a Different Version of Python During NPM Install?

I recently ran into a classic compatibility headache on a legacy CentOS 5.9 VPS. The server shipped with Python 2.4.3 as the default, but...

How do I Fix a Add Default Parameters to Functions When Using Type Hinting

When I first started combining default parameters with type hinting in Python, I ran into confusion. At first glance, it seemed simple but when...