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.

classification
Title: __weaklist__ in typeobject.c
Type: Stage:
Components: Interpreter Core Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: fdrake Nosy List: fdrake, nnorwitz
Priority: normal Keywords:

Created on 2006-07-29 19:57 by fdrake, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg29376 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2006-07-29 19:57
typeobject.c:subtype_getweakref mentions __weaklist__
in an exception message that looks like it should refer
to __weakref__.  This exists in both 2.4 and the trunk.

Fixing this should be just a matter of changing the
message text; I don't see any other references to
__weaklist__.
msg29377 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2006-08-04 03:45
Logged In: YES 
user_id=33168

See patch 1534048
msg29378 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2006-08-04 05:18
Logged In: YES 
user_id=3066

Corresponding patch committed for the Python trunk (2.5;
revision 51084), and the release24-maint branch (2.4.4;
revision 51083).
History
Date User Action Args
2022-04-11 14:56:19adminsetgithub: 43744
2006-07-29 19:57:23fdrakecreate