summaryrefslogtreecommitdiffstats
path: root/Modules/gc_weakref.txt
Commit message (Collapse)AuthorAgeFilesLines
* Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27478)Miss Islington (bot)2021-07-301-1/+1
| | | | | (cherry picked from commit be42c06bb01206209430f3ac08b72643dc7cad1c) Co-authored-by: Noah Kantrowitz <noah@coderanger.net>
* Issue #13575: there is only one class type.Florent Xicluna2011-12-121-3/+3
|
* SF 1055820: weakref callback vs gc vs threadsTim Peters2004-10-301-1/+113
| | | | | | | | In cyclic gc, clear weakrefs to unreachable objects before allowing any Python code (weakref callbacks or __del__ methods) to run. This is a critical bugfix, affecting all versions of Python since weakrefs were introduced. I'll backport to 2.3.
* SF bug 839548: Bug in type's GC handling causes segfaults.Tim Peters2003-11-201-0/+107
Also SF patch 843455. This is a critical bugfix. I'll backport to 2.3 maint, but not beyond that. The bugs this fixes have been there since weakrefs were introduced.