
20 Jun
2011
20 Jun
'11
7:34 p.m.
On 06/19/2011 09:45 PM, Daniel Veillard wrote:
On Wed, Jun 15, 2011 at 09:23:19PM -0400, Cole Robinson wrote:
These functions aren't intended to be called directly by users, so mark them as private.
Hum, should that be one _ or two __ ? But ACK to cleanup !
Python convention is anything starting with an underscore is considered private. It only attempts to enforce this if using double underscore in the name of a class method/attribute, which causes some auto name mangling. However since these aren't class methods, double vs. single underscore isn't any different. Thanks, Cole