[issue40934] Default RLock does not work well for Manager Condition

2020-11-22 Thread Irit Katriel
Irit Katriel added the comment: I tried this script on Windows 10, MacOs and Linux and it blocked in all cases. If you are still seeing this issue please create a new issue with full system and env information. -- resolution: -> works for me stage: -> resolved status: open ->

[issue40934] Default RLock does not work well for Manager Condition

2020-08-07 Thread Irit Katriel
Irit Katriel added the comment: I was unable to reproduce what you're seeing on windows 10, master branch. Please provide more information regarding the python version and system you are seeing this problem on. -- nosy: +iritkatriel ___ Python

[issue40934] Default RLock does not work well for Manager Condition

2020-06-10 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40934] Default RLock does not work well for Manager Condition

2020-06-09 Thread Misko Dzamba
New submission from Misko Dzamba : I get unexpected behavior from Condition when using a Manager. I expected that if I call Condition.acquire() in one thread (or process) and then call .acquire() if another thread (or process) without first releasing the condition that it should block.