GSOC: PyCups3 is Abstracting!
Why PyCups3 is So Damn Intelligent
In my last blog , I shared just how smart PyCups3 is. This time, let’s go one layer deeper and see why it’s so intelligent.
But first, let’s warm up with a bit of Python magic. ✨
What the Heck is a Dunder Method?
Straight from the Python 3.x docs:
Dunder methods (a.k.a. magic methods) are special methods you can define in your classes to give them superpowers. These methods let you make your class objects behave like built-in Python types. They’re called dunder because they start and end with a double underscore — like
__init__
.