문제

In the documentation of the threading module it says:

All of the objects provided by this module that have acquire() and release() methods can be used as context managers for a with statement. The acquire() method will be called when the block is entered, and release() will be called when the block is exited.

I was wondering if it is called in blocking or non-blocking mode?

도움이 되었습니까?

해결책

From looking at the CPython source, it appears that it's called with default arguments, which means in blocking mode.

The methods you want to look at in particular are __enter__(), which is called at the beginning of the with block, and __exit__(), which is called at the end.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top