Message71658
| Author | pitrou |
|---|---|
| Recipients | amaury.forgeotdarc, benjamin.peterson, pitrou, vstinner |
| Date | 2008-08-21.17:14:30 |
| SpamBayes Score | 0.0003523559 |
| Marked as misclassified | No |
| Message-id | <1219338872.52.0.177102829838.issue3611@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
On a Windows box, I manage to make the following script reliably hang on
a non-debug build of beta3. This can be a good base for further diagnosing.
def f():
class Bug:
def __del__(self):
1/0
import gc
trash = [Bug()]
trash.append(trash)
try:
gc.collect()
gc.set_threshold(1, 1, 1)
del trash
len()
except TypeError:
raise
if __name__ == "__main__":
f() |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2008-08-21 17:14:32 | pitrou | set | recipients: + pitrou, amaury.forgeotdarc, vstinner, benjamin.peterson |
| 2008-08-21 17:14:32 | pitrou | set | messageid: <1219338872.52.0.177102829838.issue3611@psf.upfronthosting.co.za> |
| 2008-08-21 17:14:31 | pitrou | link | issue3611 messages |
| 2008-08-21 17:14:30 | pitrou | create | |