summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3d512d7..fc88fbf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,8 @@ Core and Builtins
Library
-------
+- Issue #16595: Add prlimit() to resource module.
+
- Issue #19324: Expose Linux-specific constants in resource module.
- Issue #17400: ipaddress should make it easy to identify rfc6598 addresses.