vote up 1 vote down star

I know most of the ins and outs of Python's approach to private variables/members/functions/...

However, I can't make my mind up on how to distinguish between methods for external use or subclassing use.

Consider the following example:

class EventMixin(object):
    def subscribe(self, **kwargs):
        '''kwargs should be a dict of event -> callable, to be specialized in the subclass'''

    def event(self, name, *args, **kwargs):
        ...

    def _somePrivateMethod(self):
        ...

In this example, I want to make it clear that subscribe is a method to be used by external users of the class/object, while event is a method that should not be called from the outside, but rather by subclass implementations.

Right now, I consider both part of the public API, hence don't use any underscores. However, for this particular situation, it would feel cleaner to, for example, use no underscores for the external API, one underscore for the subclassable API, and two underscores for the private/internal API. However, that would become unwieldy because then the internal API would need to be invoked as

self._EventMixin__somePrivateMethod()

So, what are your conventions, coding-wise, documentationwise, or otherwise ?

flag

36% accept rate
Does Python not support protected members? Oo – OregonGhost Oct 25 '08 at 12:57
The compiler doesn't enforce protected members. It's done by convention only. – Bill the Lizard Oct 25 '08 at 13:26

4 Answers

vote up 2 vote down

I'd like to make the suggestion that when you find yourself encountering this kind of distinction, it may be a good idea to consider using composition instead of inheritance; in other words, instantiating EventMixin (presumably the name would change) instead of inheriting it.

link|flag
vote up 1 vote down

I generally find using double __ to be more trouble that they are worth, as it makes unit testing very painful. using single _ as convention for methods/attributes that are not intended to be part of the public interface of a particular class/module is my preferred approach.

link|flag
vote up 2 vote down
use no underscores for the external API,
one underscore for the subclassable API,
and two underscores for the private/internal API

This is a reasonable and relatively common way of doing it, yes. The double-underline-for-actually-private (as opposed to ‘protected’ in C++ terms) is in practice pretty rare. You never really know what behaviours a subclass might want to override, so assuming ‘protected’ is generally a good bet unless there's a really good reason why messing with a member might be particularly dangerous.

However, that would become unwieldy because then the internal API would
need to be invoked as self._EventMixin__somePrivateMethod()

Nope, you can just use the double-underlined version and it will be munged automatically. It's ugly but it works.

link|flag
vote up 0 vote down

Please note that Python has no official concept of protected members, so the compiler does nothing to enforce any conventions.

From this Developer's Guide.

Class names are Capitalized. Public methods are also Capitalized, protected methods are lowercase_with_underscores, private methods start with two underscores (another Python convention). Instance variables are also lowercase_with_underscores.

Another common convention is to prefix "protected" members with a sinle underscore, but I personally think it renders code nigh unreadable to mix single-underscore and double-underscore prefixes.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.