New submission from Lucian Ursu :
I suggest that name mangling should not be recommended as a way of having
private attributes. Instead, one underscore should be suggested as a signal
that the attribute is private.
This suggestion comes after discussing with some of the helpers from #python
Lucian Ursu added the comment:
Then it must be an issue with my Python. This is what I get.
>>> import sys
>>> dir(sys)
['__displayhook__', '__doc__', '__excepthook__', '__name__', '__package__',
'__stderr__',
New submission from Lucian Ursu :
Hello,
I've discovered an issue while reading the Python tutorial. In chapter 6.2.
"Standard Modules", the tutorial mentions the "sys" module and two of its
attributes, ps1='<<<' and ps2='...'. The prob