I want to clear this up once and for all. Can someone please explain the exact meaning of having leading underscores before an object's name in Python? Also explain the difference between a single and a double leading underscore. Also, does that meaning stay the same whether the object in question is a variable, a function, a method, etcetera?
|
Single UnderscoreNames, in a class, with a leading underscore are simply to indicate to other programmers that the attribute or method is intended to be private. However, nothing special is done with the name itself. To quote PEP-8:
Double Underscore (Name Mangling)From the Python docs:
And a warning from the same page:
Example
|
||||
|
|
|
Excellent answers so far but some tidbits are missing. A single leading underscore isn't exactly JUST a convention: if you use The leading-underscore convention is widely used not just for PRIVATE names, but also for what C++ would call PROTECTED ones -- for example, names of methods that are fully intended to be overridden by subclasses (even ones that HAVE to be overridden since in the base class they For example, to make a thread-safe queue with a different queueing discipline than FIFO, one imports Queue, subclasses Queue.Queue, and overrides such methods as |
|||||||||||
|
|
No other form of underscores have meaning in the Python world. There's no difference between class, variable, global, etc in these conventions. |
||||
|
|
You can still access Example:
t._b is accessible because it is only hidden by convention
t.__a isn't found because it no longer exists due to namemangling
By accessing |
||||
|
|
|
Sometimes you have what appears to be a tuple with a leading underscore as in
In this case, what's going on is that _() is an alias for a localization function that operates on text to put it into the proper language, etc. based on the locale. For example, Sphinx does this, and you'll find among the imports
and in sphinx.locale, _() is assigned as an alias of some localization function. |
||||
|
|
|
Single leading underscores is a convention. there is no difference from the interpreter's point of view if whether names starts with a single underscore or not. Double leading and trailing underscores are used for built-in methods, such as Double leading underscores w/o trailing counterparts are a convention too, however, the class methods will be mangled by the interpreter. For variables or basic function names no difference exists. |
|||
|
|
|
Here's a great article on the subject: More than you need to know about double underscore methods |
|||
|
|
|
Your question is good, it is not only about methods. Functions and objects in modules are commonly prefixed with one underscore as well, and can be prefixed by two. But __double_underscore names are not name-mangled in modules, for example. What happens is that names beginning with one (or more) underscores are not imported if you import all from a module (from module import *), nor are the names shown in help(module). |
||||
|
|
If one really wants to make a variable read-only, IMHO the best way would be to use property() with only getter passed to it. With property() we can have complete control over the data.
I understand that OP asked a little different question but since I found another question asking for 'how to set private variables' marked duplicate with this one, I thought of adding this additional info here. |
||||
|
|
