You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 29, 2021. It is now read-only.
Why mutex should be added?
Because timers runs in separate goroutunes and case with concurrent
access is possible. So, mutex was added to avoid it.
Also method `Must` was added. It is chainable method to ensure that
the context exists.
Example:
ctx.Must().PevalString(`print("the context is good now")`)
0 commit comments