Re: [Edu-sig] multiple inheritance and method resolution order

2018-09-07 Thread kirby urner
Addendum (copyleft, re-use and modify at will) + related links [The] > "where's Waldo" exercise and this investigation into the MRO may be > combined: bury a waldo() instance or class method somewhere in the Genesis > family > [tree], > === class Gen0 (object): """the Old One""" def

[Edu-sig] multiple inheritance and method resolution order

2018-09-07 Thread kirby urner
I have a standard exercise in sharing Python's data structures, wherein I bury the string "Waldo" in some deeply nested object, say as an element in a tuple in a dict in a list... to some demented level.[1] When we're learning Python grammar, that's when "demented" makes sense i.e. this isn't abou