I am a programmer by heart and by trade. This is where I share my views and creations. I love Python, open source, music and tough challenges.
One day, I will need something like this.
>>> class CallableInt(int): ... def __call__(self): ... return self ... >>> a = CallableInt(1) >>> a() 1 >>>
Won't I?