Can everyone please stop shoehorning in random xkcd comics where they don't belong?
Forbidden
You don't have permission to access /2011/07/14/basic-intro-to-python-meta-programming/ on this server.
>>> Foo = type("Foo", (FooBase,), {'bar' : 42})
is not equivalent to what the blog post says it is to. FooBase should be defined before running this, and the blog post's equivalent make it look like this statement defines FooBase as well.
For me this article was written in reverse. For an intro I'd love to have had the 'code smell' example first to establish why I might care and when I might need this, and then dive into an example.