private tag :
If the name of a Python function, class method, or attribute starts with (but doesn't end with) two underscores, it's private; everything else is public
__parse is a private member
__parse__ is a public member
Reference: http://www.diveintopython.net/object_oriented_framework/private_functions.html