[EMAIL PROTECTED] wrote:
> Suppose you want to write a subclass of some existing class you are
> importing from a module you didn't write and that you don't want to
> study the internals of

No need to study its internals. Fire up a Python interpreter and
inspect its outside:

    >>> import foomodule
    >>> dir(foomodule.FooClass)

Any attributes named there should be avoided in your subclasses if you
don't want to clobber existing behaviour.

-- 
 \       "Those who will not reason, are bigots, those who cannot, are |
  `\     fools, and those who dare not, are slaves."  -- "Lord" George |
_o__)                                                Gordon Noel Byron |
Ben Finney
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to