[issue16844] funcName in logging module for python 2.6

2013-01-03 Thread Vinay Sajip
Vinay Sajip added the comment: You are apparently not using the logging in stdlib, but the older, standalone logging package intended to be used in versions of Python older than 2.3 - note the presence of "site-packages/logging-0.4.9.6-py2.6.egg" in the traceback. If you are using Python 2.6,

[issue16844] funcName in logging module for python 2.6

2013-01-02 Thread Alejandro Marco Ramos
Alejandro Marco Ramos added the comment: In response to msg178860. When use the module logging and in the definition of the format string appear '%(funcName)s' the module crash. (Extract): File "/Library/Python/2.6/site-packages/logging-0.4.9.6-py2.6.egg/logging/__init__.py", line 724, in emi

[issue16844] funcName in logging module for python 2.6

2013-01-02 Thread Alejandro Marco Ramos
Alejandro Marco Ramos added the comment: is not related to 16778 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue16844] funcName in logging module for python 2.6

2013-01-02 Thread R. David Murray
R. David Murray added the comment: I wonder if this is related to issue 16778. -- nosy: +r.david.murray, vinay.sajip ___ Python tracker ___ __

[issue16844] funcName in logging module for python 2.6

2013-01-02 Thread Ezio Melotti
Ezio Melotti added the comment: Can you provide some code to reproduce the issue and/or the traceback you got? Note that 2.6 only receives security fixes, so it won't be fixed there -- but it can be fixed in 2.7/3.2/3.3/3.x if they are affected. -- nosy: +ezio.melotti ___

[issue16844] funcName in logging module for python 2.6

2013-01-02 Thread Alejandro Marco Ramos
New submission from Alejandro Marco Ramos: hi, when use the param 'funcName' in the logging module (version 0.4.9.6 for python 2.6) the module crash. Researching in the code (__init__.py) i see that the code for get the function name is in method '_log' in the class 'Logger'. The function 'fin