Jarek Zgoda napisaƂ(a):
> Hi, all,
>
> anybody has an idea on how to set ulimit (-v in my case, linux) for
> process started using subprocess.Popen?

What about:

from subprocess import call
call('ulimit -v 1000 && ulimit -v && ls', shell=True)

HTH,
Rob
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to