Re: [Python-Dev] Sporadic failures of test_subprocess and test_multiprocessing_spawn

2015年3月29日 17:33:33 -0700

Hi Serhiy,
2015年03月28日 17:40 GMT+01:00 Serhiy Storchaka <[email protected]>:
> Just run tests with low memory limit.
>
> (ulimit -v 60000; ./python -m test.regrtest -uall -v
> test_multiprocessing_spawn;)
>
> test_io also hangs.
I confirm that some tests using threads hang under very low memory
condition. At bootstrap, Python doesn't handle correctly all
exceptions when starting a new thread. The "parent thread" waits until
the "child thread" completes, which never occurs because the thread
already completed.
I don't think that it was my regression, it probably exists since
Python 2 and maybe before. I'm not interested to touch this fragile
part of Python. It's maybe easy to fix the issue, I don't know.
Victor
_______________________________________________
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to