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
This uses NamedTemporaryFile with delete=False to replace the one
use of the deprecated mktemp function in smmap (reported in #41).
This avoids the race condition inherent to mktemp, as the file is
named and created together in a way that is effectively atomic.
Because NamedTemporaryFile is not being used to automatically
delete the file, it use and cleanup are unaffected by the change.
0 commit comments