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 vstinner
Recipients gvanrossum, neologix, r.david.murray, vstinner, yselivanov
Date 2014-07-02.00:20:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404260454.1.0.374930516525.issue21901@psf.upfronthosting.co.za>
In-reply-to
Content
The test changes the maximum number of open files. What is the limit in your shell? You can try to modify the test to add print(soft, hard) after getrlimit().

On Fedora 20:

$ python -c 'import resource; print(resource.getrlimit(resource.RLIMIT_NOFILE))'
(1024, 4096)

The test tries to use the hard limit (4096) to set the soft limit (1024).
History
Date User Action Args
2014-07-02 00:20:54vstinnersetrecipients: + vstinner, gvanrossum, r.david.murray, neologix, yselivanov
2014-07-02 00:20:54vstinnersetmessageid: <1404260454.1.0.374930516525.issue21901@psf.upfronthosting.co.za>
2014-07-02 00:20:54vstinnerlinkissue21901 messages
2014-07-02 00:20:53vstinnercreate