Hacker News new | ask | show | jobs
by ActorNightly 1232 days ago
>Like using dicts for everything

Sorry what? This is absolutely not true.

1 comments

I think they meant that the underlying representation for most stuff is a dict.

Global variables are stored in a dict (`vars()`). Unless you use slots, an object is essentially a dict

Doesn't really disturb me because they're not used like a dict in practice though