I am asking about module privates, not class privates.
Suggested in here, a module private starts with one underscore, such a element is not copied along when using the from <module_name> import * form of the import command; it is however imported if using the import <moudule_name> syntax.
So the question is if I have to use import <moudule_name> syntax, how to avoid importing module private functions?