[issue7014] Logging incompatible with IronPython

2009-09-29 Thread Michael Foord
Michael Foord added the comment: Works for me - thanks Vinay. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7014] Logging incompatible with IronPython

2009-09-29 Thread Vinay Sajip
Vinay Sajip added the comment: Fix checked into trunk and release26-maint. Please verify. Note - the problem is not just to do with availability of sys._getframe in Python - it's actually because sys.exc_traceback.tb_frame.f_back is None (even though sys.exc_traceback.tb_frame is a frame object

[issue7014] Logging incompatible with IronPython

2009-09-28 Thread Jason R. Coombs
Changes by Jason R. Coombs : -- nosy: +jaraco ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue7014] Logging incompatible with IronPython

2009-09-28 Thread Michael Foord
New submission from Michael Foord : Logging is incompatible with IronPython 2.6. See: http://ironpython.codeplex.com/WorkItem/View.aspx?WorkItemId=24714 The core of the issue is that logging assumes that if sys._getframe is not defined then frames can still be accessed through exceptions. For