In article <[email protected]>, dandi kain <[email protected]> wrote: > >What is the functionality of __ or _ , leading or trailing an object , >class ot function ? Is it just a naming convention to note special >functions and objects , or it really mean someting to Python ?
One more thing: if you have global module names with a single leading underscore (e.g. "_foo"), they will not be loaded when you use from <module> import * However, "import *" is strongly discouraged for the most part. -- Aahz ([email protected]) <*> http://www.pythoncraft.com/ "Many customs in this life persist because they ease friction and promote productivity as a result of universal agreement, and whether they are precisely the optimal choices is much less important." --Henry Spencer -- http://mail.python.org/mailman/listinfo/python-list
