cpython: 87d41a5a9077 (original) (raw)

Mercurial > cpython

changeset 86609:87d41a5a9077

Issue #16595: prlimit() needs Linux kernel 2.6.36+ [#16595]

Christian Heimes christian@cheimes.de
date Fri, 25 Oct 2013 08:31:19 +0200
parents 16357a6786cb
children e7b97822110f
files Doc/library/resource.rst Lib/test/test_resource.py
diffstat 2 files changed, 2 insertions(+), 1 deletions(-)[+] [-] Doc/library/resource.rst 2 Lib/test/test_resource.py 1

line wrap: on

line diff

--- a/Doc/library/resource.rst +++ b/Doc/library/resource.rst @@ -90,7 +90,7 @@ this module for those platforms. :exc:PermissionError when the user doesn't have CAP_SYS_RESOURCE for the process.

--- a/Lib/test/test_resource.py +++ b/Lib/test/test_resource.py @@ -141,6 +141,7 @@ class ResourceTest(unittest.TestCase): @unittest.skipUnless(hasattr(resource, 'prlimit'), 'no prlimit')