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 remi.lapeyre
Recipients remi.lapeyre
Date 2020-05-27.20:27:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1590611242.05.0.840609180281.issue40797@roundup.psfhosted.org>
In-reply-to
Content
The threading.Semaphore class does not have this method, it is undocumented and useless on some system (at least MacOS):

>>> s.get_value()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/multiprocessing/synchronize.py", line 129, in get_value
    return self._semlock._get_value()
NotImplementedError



The implementation is at https://github.com/python/cpython/blob/master/Modules/_multiprocessing/semaphore.c#L537-L553

I think this method could be removed, since it's undocumented and probably not used can I just remove it or does it need a deprecation cycle?
History
Date User Action Args
2020-05-27 20:27:22remi.lapeyresetrecipients: + remi.lapeyre
2020-05-27 20:27:22remi.lapeyresetmessageid: <1590611242.05.0.840609180281.issue40797@roundup.psfhosted.org>
2020-05-27 20:27:22remi.lapeyrelinkissue40797 messages
2020-05-27 20:27:21remi.lapeyrecreate