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
def lib(so):
"""
Wrap the main library call coming from Cython with a preemptive
dynamic loading.
"""
global _lib
global _so
if _lib:
if _so != so:
raise AlreadyInitialized( # noqa: F405
- "Already initialized with %s" % so)
+ "Already initialized with %s" % _so)
else:
return _lib
from . import _pkcs11
_lib = _pkcs11.lib(so)
_so = so
return _lib
The text was updated successfully, but these errors were encountered:
Had different libraries, but I agree. I was wondering why switching is not possible. What is it protecting?
If user takes out card while running and inserts another in this case they can not switch library if needed.
The text was updated successfully, but these errors were encountered: