Message 187681 - Python tracker
Message187681
| Author | niemeyer |
|---|---|
| Recipients | niemeyer |
| Date | 2013-04-24.02:59:29 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1366772370.17.0.184801312009.issue17824@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
This simple script will spawn N Python interpreters that aren't properly collected due to the improper error handling:
import pty
for i in range(N):
try: pty.spawn(["/non-existent"])
except: pass |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2013-04-24 02:59:30 | niemeyer | set | recipients: + niemeyer |
| 2013-04-24 02:59:30 | niemeyer | set | messageid: <1366772370.17.0.184801312009.issue17824@psf.upfronthosting.co.za> |
| 2013-04-24 02:59:30 | niemeyer | link | issue17824 messages |
| 2013-04-24 02:59:29 | niemeyer | create | |