Archive for the ‘Linkdump’ Category
Python linkdump - 24 Aug 2008
Here is a linkdump of resources related to python which I had in my bookmarks. These are some advanced topics which would really help you to better understand the internals and write better code.
- Python’s dot operator and the magic self object - explains about the way object orientedness works in python.
- Want to do operator overloading? Want to know the list of all special __underscore__ methods? It would really help you to have this as a quick reference.
- Metaclasses are classes whose instances are classes. This is a bit confusing to understand and would require you to read through the Part 1, Part 2 and Part 3 of the IBM’s developer works Metaclass programming in python series.

