Skip to content Skip to sidebar Skip to footer
Showing posts with the label Setattr

Python Creating A Readonly Wrapper Class Without Modifying Wrapped Class

I have a base class that looks like follows: class Base: def __init__(self, prop): self… Read more Python Creating A Readonly Wrapper Class Without Modifying Wrapped Class