]> granicus.if.org Git - python/commit
Fix for SF bug #485678.
authorGuido van Rossum <guido@python.org>
Mon, 3 Dec 2001 00:54:52 +0000 (00:54 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 3 Dec 2001 00:54:52 +0000 (00:54 +0000)
commit4b80085dddba9cfb06aa3ee74b65371a209c5ab0
tree95e782fe325396cc17ac53a146082044f3b6d873
parentfaad5ad59005d16080aa79b593fede25c6a7457c
Fix for SF bug #485678.

slot_tp_descr_set(): When deleting an attribute described by a
descriptor implemented in Python, the descriptor's __del__ method is
called by the slot_tp_descr_set dispatch function.  This is bogus --
__del__ already has a different meaning. Renaming this use of __del__
is renamed to __delete__.
Misc/NEWS