[issue25066] Better repr for multiprocessing.synchronize objects

2021-12-09 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset af6b4068859a5d0c8afd696f3c0c0155660211a4 by Kumar Aditya in branch 'main': bpo-25066: Added repr for multiprocessing.Event (GH-29749) https://github.com/python/cpython/commit/af6b4068859a5d0c8afd696f3c0c0155660211a4 -- nosy: +pa

[issue25066] Better repr for multiprocessing.synchronize objects

2021-11-24 Thread Kumar Aditya
Change by Kumar Aditya : -- keywords: +patch nosy: +kumaraditya303 nosy_count: 7.0 -> 8.0 pull_requests: +27986 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/29749 ___ Python tracker

[issue25066] Better repr for multiprocessing.synchronize objects

2021-10-18 Thread Andrei Kulakov
Andrei Kulakov added the comment: Nihir: in synchronize.py, only Barrier inherits from threading.Barrier, as far as I can see. Other classes inherit from `object`. -- nosy: +andrei.avk ___ Python tracker __

[issue25066] Better repr for multiprocessing.synchronize objects

2021-10-01 Thread Nihir Patel
Nihir Patel added the comment: Given https://github.com/python/cpython/pull/20534 is merged and the multiprocessing.synchronize objects inherit from the corresponding threading module objects, is this still needed? -- nosy: +nihir27 ___ Python tra

[issue25066] Better repr for multiprocessing.synchronize objects

2021-09-06 Thread Irit Katriel
Irit Katriel added the comment: The patch need to be converted to a GitHub PR. -- keywords: +easy -patch nosy: +iritkatriel stage: patch review -> needs patch versions: +Python 3.11 -Python 3.5, Python 3.6 ___ Python tracker

[issue25066] Better repr for multiprocessing.synchronize objects

2015-09-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue25066] Better repr for multiprocessing.synchronize objects

2015-09-10 Thread Davin Potts
Davin Potts added the comment: To Antoine's point in issue24391, here too, these modifications to the format of the repr are estimated to have very little impact or risk to breaking existing code. -- ___ Python tracker

[issue25066] Better repr for multiprocessing.synchronize objects

2015-09-10 Thread Davin Potts
Davin Potts added the comment: This patch implements the majority opinion from issue24391 for the desired format of the reprs produced by Event, Semaphore, BoundedSemaphore, and Barrier. It provides tests around each, inspired by Serhiy's preliminary patch for that same issue but adapted for

[issue25066] Better repr for multiprocessing.synchronize objects

2015-09-10 Thread Davin Potts
Changes by Davin Potts : -- dependencies: +Better repr for threading objects ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue25066] Better repr for multiprocessing.synchronize objects

2015-09-10 Thread Davin Potts
New submission from Davin Potts: Inspired by issue24391 and the changes proposed to the threading module's reprs for Event, Semaphore, BoundedSemaphore, and Barrier, the corresponding objects in the multiprocessing module should have their reprs updated accordingly. -- assignee: davin