This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pablogsal
Recipients davin, pablogsal, pitrou, serhiy.storchaka, taleinat, vstinner
Date 2018-06-24.13:55:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529848543.86.0.56676864532.issue33613@psf.upfronthosting.co.za>
In-reply-to
Content
@taleinat Sadly, if the semaphore_tracker receives an invalid command, it raises and dies, making the test impossible:

                     cmd, name = line.strip().split(b':')
                     if cmd == b'REGISTER':
                         cache.add(name)
                     elif cmd == b'UNREGISTER':
                         cache.remove(name)
                     else:
                         raise RuntimeError('unrecognized command %r' % cmd)
History
Date User Action Args
2018-06-24 13:55:43pablogsalsetrecipients: + pablogsal, pitrou, vstinner, taleinat, serhiy.storchaka, davin
2018-06-24 13:55:43pablogsalsetmessageid: <1529848543.86.0.56676864532.issue33613@psf.upfronthosting.co.za>
2018-06-24 13:55:43pablogsallinkissue33613 messages
2018-06-24 13:55:43pablogsalcreate