Describe the feature you want to add
Refactor internal helper functions that use a double underscore prefix to use a single underscore prefix according to Python naming conventions.
Describe your proposed solution
Rename all module-level internal functions from __function_name to _function_name and update all references accordingly. Keep the public API unchanged and only modify internal implementation details.
Describe alternatives you've considered, if relevant
No response
Additional context
No response
Describe the feature you want to add
Refactor internal helper functions that use a double underscore prefix to use a single underscore prefix according to Python naming conventions.
Describe your proposed solution
Rename all module-level internal functions from
__function_nameto_function_nameand update all references accordingly. Keep the public API unchanged and only modify internal implementation details.Describe alternatives you've considered, if relevant
No response
Additional context
No response