diff options
author | Christian Heimes <christian@cheimes.de> | 2013-10-22 09:21:54 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-10-22 09:21:54 (GMT) |
commit | b7bd5df809aabaf857eb51b139d5e519d8b3c364 (patch) | |
tree | d4fb23b4eca52906c84473365a6a0e44c792a7e4 /Doc/whatsnew | |
parent | 6fc79bf813de21015208d989e38cdc95bda03292 (diff) | |
download | cpython-b7bd5df809aabaf857eb51b139d5e519d8b3c364.zip cpython-b7bd5df809aabaf857eb51b139d5e519d8b3c364.tar.gz cpython-b7bd5df809aabaf857eb51b139d5e519d8b3c364.tar.bz2 |
Issue #16595: Add prlimit() to resource module
prlimit() is a Linux specific command that combines setrlimit, getrlimit and can set the limit
of other processes.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index e978fcb..8e4f8e6 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -438,6 +438,12 @@ The :mod:`pprint` module now supports *compact* mode for formatting long sequences (:issue:`19132`). +resource +-------- + +New :func:`resource.prlimit` function and Linux specific constants. +(Contributed by Christian Heimes in :issue:`16595` and :issue:`19324`.) + smtplib ------- |