summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2016-08-04 10:28:00 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2016-08-04 10:28:00 +0200
commit760c92be4ab8321d02fc1148a71462b4e98176b7 (patch)
treec033c058db64ee5d479fd10de5fdb87bca0066da
parent3479246efab69f6f7e26af3a37bb0fbc4b8339a4 (diff)
downloadpsutil-760c92be4ab8321d02fc1148a71462b4e98176b7.tar.gz
update IDEAS
-rw-r--r--IDEAS2
-rw-r--r--psutil/tests/test_process.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/IDEAS b/IDEAS
index 143b686e..22741114 100644
--- a/IDEAS
+++ b/IDEAS
@@ -17,6 +17,8 @@ PLATFORMS
FEATURES
========
+- #893: (BSD) process environ
+
- #809: (BSD) per-process resource limits (rlimit()).
- (UNIX) process root (different from cwd)
diff --git a/psutil/tests/test_process.py b/psutil/tests/test_process.py
index f5a24da2..4d8144b3 100644
--- a/psutil/tests/test_process.py
+++ b/psutil/tests/test_process.py
@@ -760,7 +760,7 @@ class TestProcess(unittest.TestCase):
self.assertEqual(real, os.getgid())
# os.geteuid() refers to "effective" uid
self.assertEqual(effective, os.getegid())
- # no such thing as os.getsuid() ("saved" uid), but starting
+ # no such thing as os.getsgid() ("saved" gid), but starting
# from python 2.7 we have os.getresgid()[2]
if hasattr(os, "getresuid"):
self.assertEqual(saved, os.getresgid()[2])