summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-10-22 09:21:54 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-10-22 09:21:54 (GMT)
commitb7bd5df809aabaf857eb51b139d5e519d8b3c364 (patch)
treed4fb23b4eca52906c84473365a6a0e44c792a7e4 /Doc/whatsnew
parent6fc79bf813de21015208d989e38cdc95bda03292 (diff)
downloadcpython-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.rst6
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
-------