This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author flox
Recipients OG7, amaury.forgeotdarc, flox, jnoller, pitrou, vinay.sajip
Date 2009-11-25.10:45:21
SpamBayes Score 0.00019718465
Marked as misclassified No
Message-id <1259145924.48.0.644664364984.issue6615@psf.upfronthosting.co.za>
In-reply-to
Content
Thank you Vinay.

Since you "reversed()" the _handlerList, the following part need to be
changed:

Index: Lib/logging/__init__.py
===================================================================
--- Lib/logging/__init__.py     (revision 76508)
+++ Lib/logging/__init__.py     (working copy)
@@ -610,7 +610,7 @@
     """
     _acquireLock()
     try:
-        _handlerList.insert(0, weakref.ref(handler, _removeHandlerRef))
+        _handlerList.append(weakref.ref(handler, _removeHandlerRef))
     finally:
         _releaseLock()
History
Date User Action Args
2009-11-25 10:45:24floxsetrecipients: + flox, vinay.sajip, amaury.forgeotdarc, pitrou, OG7, jnoller
2009-11-25 10:45:24floxsetmessageid: <1259145924.48.0.644664364984.issue6615@psf.upfronthosting.co.za>
2009-11-25 10:45:23floxlinkissue6615 messages
2009-11-25 10:45:21floxcreate