[issue6938] Incorrect multiprocessing log string in managers.py (python 2.6.2)

2009-09-18 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r74903; I used %r as the format code to match the formatting in create(). -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker

[issue6938] Incorrect multiprocessing log string in managers.py (python 2.6.2)

2009-09-18 Thread Zhang Cong
New submission from Zhang Cong : 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 multiprocessi