Makina Blog
Image
Python tutorial : Understanding Python threading
Python
05/05/2014
As many others languages, Python provides a great and simple library to use threads. This library includes all required objects and functions that you will need to do parallel programming and manage concurrent data access between threads.
Python Tutorial: Understanding Python MRO - Class search path
Python
20/03/2014
The Python Method Resolution Order defines the class search path used by Python to search for the right method to use in classes having multi-inheritance. It as envolved since Python 2.2 to 2.3. The algorithm change is also refered as old classes and new classes MRO algorithm. The new one is not so easy to bring out.