summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/weakref_in_del.py
Commit message (Collapse)AuthorAgeFilesLines
* This got fixed for classic classes in r60057,Guido van Rossum2008-01-181-17/+0
| | | | and backported to 2.5.2 in 60056.
* Fix crasher for when an object's __del__ creates a new weakref to itself.Brett Cannon2007-01-231-1/+2
| | | | | | Patch only fixes new-style classes; classic classes still buggy. Closes bug #1377858. Already backported.
* Set svn:eol-style to native.Tim Peters2006-03-011-16/+16
|
* Whitespace normalization.Tim Peters2006-01-131-17/+16
|
* As I threatened on python-dev, add a directory which contains all knownNeal Norwitz2006-01-101-0/+17
bugs which cause the interpreter to crash. I'm sure we can find a few more. Many missing bugs deal with variations on unchecked infinite recursion (like coerce.py).