Re: What are the naming convention for private member variable, and private and public member function?

2009-09-20 Thread Dave Angel
Peng Yu wrote: Hi, It says in http://www.python.org/dev/peps/pep-0008/ Method Names and Instance Variables Use the function naming rules: lowercase with words separated by underscores as necessary to improve readability. Use one leading underscore only for non-public

Re: What are the naming convention for private member variable, and private and public member function?

2009-09-20 Thread Simon Forman
On Sep 19, 11:33 pm, Peng Yu pengyu...@gmail.com wrote: Hi, It says inhttp://www.python.org/dev/peps/pep-0008/    Method Names and Instance Variables       Use the function naming rules: lowercase with words separated by       underscores as necessary to improve readability.       Use

What are the naming convention for private member variable, and private and public member function?

2009-09-19 Thread Peng Yu
Hi, It says in http://www.python.org/dev/peps/pep-0008/ Method Names and Instance Variables Use the function naming rules: lowercase with words separated by underscores as necessary to improve readability. Use one leading underscore only for non-public methods and

Re: What are the naming convention for private member variable, and private and public member function?

2009-09-19 Thread Daniel Fetchinson
It says in http://www.python.org/dev/peps/pep-0008/ Method Names and Instance Variables Use the function naming rules: lowercase with words separated by underscores as necessary to improve readability. Use one leading underscore only for non-public methods and