[2024-12-17] Adding Python boilerplate to improve interface
This commit is contained in:
parent
c47dd577f5
commit
3c4978bef8
1 changed files with 9 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue