[2024-12-17] Adding Python boilerplate to improve interface
Some checks failed
Rust / build (push) Has been cancelled
Python / build (push) Has been cancelled

This commit is contained in:
Andrew Conlin 2024-12-17 07:23:01 +00:00
parent c47dd577f5
commit 3c4978bef8

9
tictoc/__init__.py Normal file
View 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;