[Python-Dev] Multiple inheritance

Jeff Epler jepler@inetnebr.com
Thu, 3 May 2001 13:17:16 -0500


On Thu, May 03, 2001 at 09:24:40AM -0700, Paul F. Dubois wrote:
> class X (Y rename foo as _sfoo,
>                   bar as _sbar
>         ):

Why not let us spell this as:
	class X(Y):
		from Y import foo as _sfoo, bar as _sbar
		...

Of course, then you can spell inheritance as
	class X:
		from Y import *
Right?  :)

Jeff