It was the same for me but actually it makes sense:
- You refer to a function
time() of the module time to avoid name collisions.
- The main function of such modules is the name of the module otherwise you would have undescriptive names for your modules or functions, which leads to unreadable code.
- (I also started to do the same scheme in my own modules)
What would be a better alternative?