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 flox
Recipients chris.jerdonek, flox, vinay.sajip
Date 2010-03-22.12:42:06
SpamBayes Score 0.0013547783
Marked as misclassified No
Message-id <1269261728.2.0.400874706226.issue8200@psf.upfronthosting.co.za>
In-reply-to
Content
I would suggest something like:

if logMultiprocessing:
    try:
        self.processName = sys.modules['multiprocessing'] .current_process().name
    except StandardError:
        self.processName = 'MainProcess'
else:
    self.processName = None
History
Date User Action Args
2010-03-22 12:42:08floxsetrecipients: + flox, vinay.sajip, chris.jerdonek
2010-03-22 12:42:08floxsetmessageid: <1269261728.2.0.400874706226.issue8200@psf.upfronthosting.co.za>
2010-03-22 12:42:06floxlinkissue8200 messages
2010-03-22 12:42:06floxcreate