Scott SA <pydev at rscorp.ab.ca> writes:
A side note
> class RecipieClass:
Recipe is a more widespread spelling, I believe. Moreover it is the
convention in python that only class names are capitalized, so you
don't need to append a 'Class'.
class Recipe:
...
clafoutis = Recipe('eggs', 'spam')
--
Arnaud