[EMAIL PROTECTED] wrote:
Hello,
I'm new to python,
How can I access private field in python.

thanks


In python there realy are not private fields. There are those fields that you start with a double underline (__) theese are translated to


 _<classname>__<attributename>

Withouth the < and > markers, but there are not good practice to access theese through that name.

--
--------------------------------------
 Ola Natvig <[EMAIL PROTECTED]>
 infoSense AS / development
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to