New submission from Gustavo Niemeyer: 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 ---------- components: Library (Lib) messages: 187681 nosy: niemeyer priority: normal severity: normal status: open title: pty.spawn handles errors improperly type: behavior versions: Python 3.3 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue17824> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com