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 berker.peksag
Recipients berker.peksag, davin, docs@python, sbt
Date 2015-09-21.04:05:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442808321.25.0.819772413422.issue25201@psf.upfronthosting.co.za>
In-reply-to
Content
From https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Value

    Note that lock is a keyword-only argument.

But the signature of Value (in Lib/multiprocessing/context.py)

    def Value(self, typecode_or_type, *args, lock=True):

and (in Lib/multiprocessing/sharedctypes.py)

    def Value(typecode_or_type, *args, lock=True, ctx=None):

I'd suggest to remove that part of the documentation in 3.4+. We can also make it a keyword-only argument in Python 3.6. That will make the API more similar with https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Array
History
Date User Action Args
2015-09-21 04:05:21berker.peksagsetrecipients: + berker.peksag, docs@python, sbt, davin
2015-09-21 04:05:21berker.peksagsetmessageid: <1442808321.25.0.819772413422.issue25201@psf.upfronthosting.co.za>
2015-09-21 04:05:21berker.peksaglinkissue25201 messages
2015-09-21 04:05:20berker.peksagcreate