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 ftofficer
Recipients ftofficer
Date 2009-09-18.09:06:47
SpamBayes Score 0.0009493771
Marked as misclassified No
Message-id <1253264811.0.0.554251286265.issue6938@psf.upfronthosting.co.za>
In-reply-to
Content
There is an issue in multiprocessing library.
Lib/multiprocessing/managers.py:413:

util.debug('disposing of obj with id %d', ident)

It is '%d' here, but 'ident' is a string.

This always cause an TypeError from logging module once enable logging
on multiprocessing.

Patch is attached to fix the issue.
History
Date User Action Args
2009-09-18 09:06:51ftofficersetrecipients: + ftofficer
2009-09-18 09:06:51ftofficersetmessageid: <1253264811.0.0.554251286265.issue6938@psf.upfronthosting.co.za>
2009-09-18 09:06:48ftofficerlinkissue6938 messages
2009-09-18 09:06:47ftofficercreate