-
Python
Better Unbound Python Descriptors
Welcome back from another hiatus! This post is a facepalm post because I recently realized that I’ve been an idiot…
Read More » -
Python
A Weird (and Mostly Impractical) Way to Do Multi-Line “Lambdas” in Python
Some of you who follow me may have noticed a tendency of mine to “hack” programming languages more than really…
Read More » -
Python
Using the New Python Instance Properties
Last week, I showed you my new implementation for instance-level properties in Python. This week, we’ll take another look at…
Read More » -
Python
Another Look at Instance-Level Properties in Python
A while back, I did a post on making instance-level properties in Python where the implementation of it required inheritance…
Read More » -
Python
A Problem With Python’s Code Blocks
So, this post was going to be completely different. I was going to do a post on how you can…
Read More » -
Python
Default Implementations Using Delegation
Hey everyone! It’s my first post of the new year! Usually, I do a bunch of book reviews at the…
Read More » -
Python
Python Inheritance is More Powerful (and More Dangerous) Than Most
This is going to be a short one to get me back into writing again. I just wanted to point…
Read More » -
Python
Multi-Line Lambdas in Python
I need to preface all of this with a disclaimer: I love Python, but I am able to see plenty of…
Read More » -
Python
Instance-Level Properties in Python
Making Descriptors that act as specialized properties can be tricky, especially when it comes to storing the data the property…
Read More »