kfira / python-multiprocessing

Automatically exported from code.google.com/p/python-multiprocessing
Other
0 stars 0 forks source link

Logging in Manager.decref() method raises exception #9

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The following line in the Manager.decref() method raises an exception (at
least when logging in enabled):

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

This is because the type of 'ident' is str, not int. The following patch
fixes this problem. (This seems like it may be causing problem with
execution of finalization functions in the slave processes...)

Original issue reported on code.google.com by christia...@gmail.com on 4 Dec 2008 at 9:54

Attachments: