Python as a Language Is Inescabably Coupled With Its Implementation Part 1: LET'S DO DUMB SHIT WITH the GC
There is a convenient but untrue fiction about Python that the language specification is somehow cleanroom and CPython is actually “just an implementation.”
This has always been false, and harmful at best.
Look at __dict__
. Near every Python object has a dictionary that fuels and consumes it. All your dotted getters are mere passthroughs for dot __getitem__
ers.
Another fun thing is the leaking of implementation details in Bad Ways. Here’s something you can do but should not do, lest I find out where you live and poop in your mailbox:
import gc
x = "HELLO"
print("My names are:", [[key for key, value in var.items() if value is x] for var in gc.get_referrers(x)])
And it outputs:
My names are: [['x']]
You could create a class where all its instances know their names. All their names. Do not do this. I will leave you poop.