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 ned.deily
Recipients n8henrie, ned.deily
Date 2018-03-14.23:20:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1521069658.56.0.467229070634.issue33036@psf.upfronthosting.co.za>
In-reply-to
Content
I'm not sure what to suggest other than taking a close look at and instrumenting that part of test_selectors.  One thing you could try is seeing what the call to resource.getrlimit(resource.RLIMIT_NOFILE) is returning.  You can also look at the values for your system's kernel by using the sysctl utility; see man sysctl.  For example, on my system:

>>> resource.getrlimit(resource.RLIMIT_NOFILE)
(7168, 9223372036854775807)

$ sysctl kern.maxfilesperproc
kern.maxfilesperproc: 36864

That may or may not be relevant.

Long shot: are you running under an account that does not have administrator privs?
History
Date User Action Args
2018-03-14 23:20:58ned.deilysetrecipients: + ned.deily, n8henrie
2018-03-14 23:20:58ned.deilysetmessageid: <1521069658.56.0.467229070634.issue33036@psf.upfronthosting.co.za>
2018-03-14 23:20:58ned.deilylinkissue33036 messages
2018-03-14 23:20:58ned.deilycreate