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 _doublep
Recipients _doublep
Date 2008-01-20.17:45:31
SpamBayes Score 0.49517313
Marked as misclassified No
Message-id <1200851132.21.0.235760287149.issue1878@psf.upfronthosting.co.za>
In-reply-to
Content
OK, here it is:

>>> from notify.all import *
>>> original_protector = AbstractGCProtector.default
>>> new_protector = FastGCProtector ()
>>> AbstractGCProtector.set_default (new_protector)
>>> AbstractGCProtector.default is new_protector
False
>>> AbstractGCProtector.default is original_protector
True

It seems that this behaviour is somewhat random.  Sometimes the
False/True lines are reversed, as expected.  I.e. it seems that
attribute cache is sometimes recomputed...
History
Date User Action Args
2008-01-20 17:45:32_doublepsetspambayes_score: 0.495173 -> 0.49517313
recipients: + _doublep
2008-01-20 17:45:32_doublepsetspambayes_score: 0.495173 -> 0.495173
messageid: <1200851132.21.0.235760287149.issue1878@psf.upfronthosting.co.za>
2008-01-20 17:45:31_doubleplinkissue1878 messages
2008-01-20 17:45:31_doublepcreate