[2024-12-17] Adding Python boilerplate to improve interface
This commit is contained in:
parent
c47dd577f5
commit
3c4978bef8
9
tictoc/__init__.py
Normal file
9
tictoc/__init__.py
Normal file
@ -0,0 +1,9 @@
|
||||
from .tictoc import *
|
||||
|
||||
__doc__ = tictoc.__doc__
|
||||
if hasattr(tictoc, "__all__"):
|
||||
__all__ = tictoc.__all__
|
||||
|
||||
results = tictoc.init();
|
||||
tic = results.tic;
|
||||
toc = results.toc;
|
Loading…
x
Reference in New Issue
Block a user