[issue23484] SemLock acquire() keyword arg 'blocking' is invalid
New submission from Teodor Dima: The keyword for 'blocking' in the documentation for multiprocessing.Lock.acquire() (and all synchronization objects dependent on SemLock) differs from its implementation at Modules/_multiprocessing/semaphore.c:70 - https://docs.python.org/3
[issue23484] SemLock acquire() keyword arg 'blocking' is invalid
Teodor Dima added the comment: >>> Of course, there's code in the wild that expects and uses the parameter >>> named 'block' so simply changing this keyword will result in breaking >>> others' code. That is,