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.

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:30niemeyersetrecipients: + niemeyer
2013-04-24 02:59:30niemeyersetmessageid: <1366772370.17.0.184801312009.issue17824@psf.upfronthosting.co.za>
2013-04-24 02:59:30niemeyerlinkissue17824 messages
2013-04-24 02:59:29niemeyercreate