Certain classes of identifiers (besides keywords) have special meanings. These are:
| Form | Meaning | Notes | 
|---|---|---|
_* | 
        Not imported by "from module import *" | (1) | 
__*__ | 
        System-defined name | |
__* | 
        Class-private name mangling | 
See sections: 6.12, ``The import statement''; 3.3, ``Special method names''; 5.2.1, ``Identifiers (Names)''.
Note:
See About this document... for information on suggesting changes.