[issue4301] incorrect and inconsistent logging in multiprocessing

2009-01-18 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: This is a patch to fix the logging module, and remove the crufty code in multiprocessing. -- keywords: +needs review, patch Added file: http://bugs.python.org/file12787/issue4301.patch ___ Python

[issue4301] incorrect and inconsistent logging in multiprocessing

2009-01-18 Thread Jesse Noller
Changes by Jesse Noller jnol...@gmail.com: Removed file: http://bugs.python.org/file12787/issue4301.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4301 ___

[issue4301] incorrect and inconsistent logging in multiprocessing

2009-01-18 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: fix copy/paste error, new patch Added file: http://bugs.python.org/file12788/issue4301.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4301 ___

[issue4301] incorrect and inconsistent logging in multiprocessing

2009-01-18 Thread Jesse Noller
Changes by Jesse Noller jnol...@gmail.com: Removed file: http://bugs.python.org/file12788/issue4301.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4301 ___

[issue4301] incorrect and inconsistent logging in multiprocessing

2009-01-18 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: fixed in r68737, merged to py3k in 68740 -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4301

[issue4301] incorrect and inconsistent logging in multiprocessing

2009-01-05 Thread Gregor Kopka
Gregor Kopka mailfrom-bugs.python@kopka.net added the comment: I ran into this shortly but was able to overcome it by patching /Lib/logging/__init__.py: 43-44: import threading +import multiprocessing except ImportError: 270-271: self.process = os.getpid() +

[issue4301] incorrect and inconsistent logging in multiprocessing

2008-11-11 Thread Brian D'Urso
New submission from Brian D'Urso [EMAIL PROTECTED]: logging in multiprocessing seems to give inconsistent results on Linux and XP, but neither appears to match the documentation: According to the docs, when first created the logger has level logging.NOTSET and has a handler which sends output

[issue4301] incorrect and inconsistent logging in multiprocessing

2008-11-11 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- assignee: - jnoller nosy: +jnoller ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4301 ___ ___