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 _real_close(self, _ss=_socket.socket):
# This function should not reference any globals. See issue #808164.
> _ss.close(self)
E OSError: [Errno 9] Bad file descriptor
Possibly, we're trying to close the socket that was already closed.
And, it's possibly a race condition because sometimes it happens and sometimes it's not (and only on pypy3 runs).
CI tests start to fail in Tests/t_ldapobject.py with the next error:
But always it points to:
Possibly, we're trying to close the socket that was already closed.
And, it's possibly a race condition because sometimes it happens and sometimes it's not (and only on pypy3 runs).
Further investigation is required.