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 amaury.forgeotdarc
Recipients _doublep, amaury.forgeotdarc, arigo, georg.brandl
Date 2008-01-20.22:02:18
SpamBayes Score 0.09106271
Marked as misclassified No
Message-id <1200866539.75.0.282415541435.issue1878@psf.upfronthosting.co.za>
In-reply-to
Content
The issue seems similar to the one we had in ctypes when the method
attribute cache was implemented. 

Ctypes was corrected in r59943. Maybe similar changes are needed for
this extension.

For example,
  PyDict_SetItemString (AbstractGCProtector_Type.tp_dict, "default",
new_protector)
should be modified like this:
  PyObject_SetAttr(AbstractGCProtector_Type, "default", new_protector)
History
Date User Action Args
2008-01-20 22:02:20amaury.forgeotdarcsetspambayes_score: 0.0910627 -> 0.09106271
recipients: + amaury.forgeotdarc, arigo, georg.brandl, _doublep
2008-01-20 22:02:19amaury.forgeotdarcsetspambayes_score: 0.0910627 -> 0.0910627
messageid: <1200866539.75.0.282415541435.issue1878@psf.upfronthosting.co.za>
2008-01-20 22:02:18amaury.forgeotdarclinkissue1878 messages
2008-01-20 22:02:18amaury.forgeotdarccreate