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 lee.clemens
Recipients lee.clemens
Date 2014-04-27.17:12:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398618734.12.0.810845662855.issue21367@psf.upfronthosting.co.za>
In-reply-to
Content
Not mentioned (at least not specifically) in the release notes, multiprocessing.JoinableQueue now requires 'ctx' keyword argument:
  def __init__(self, maxsize=0, *, ctx):

This causes an application calling JoinableQueue() to work with 3.3.2 (my single test) to work, but not with 3.4.0

TypeError: __init__() missing 1 required keyword-only argument: 'ctx'

The documentation is also incorrect: https://docs.python.org/3.4/library/multiprocessing.html#multiprocessing.JoinableQueue
History
Date User Action Args
2014-04-27 17:12:14lee.clemenssetrecipients: + lee.clemens
2014-04-27 17:12:14lee.clemenssetmessageid: <1398618734.12.0.810845662855.issue21367@psf.upfronthosting.co.za>
2014-04-27 17:12:14lee.clemenslinkissue21367 messages
2014-04-27 17:12:13lee.clemenscreate