summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2012-12-13 15:20:26 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2012-12-13 15:20:26 (GMT)
commita0b315f5f77ce2e68df4ca8d6174a266592b2c49 (patch)
treea072e2b0a26803b5a640d7c6fc5e02b2dcf753cc /Misc
parent954ac03a44efd352ca06a85caf2e2c04e49b3ede (diff)
downloadcpython-a0b315f5f77ce2e68df4ca8d6174a266592b2c49.zip
cpython-a0b315f5f77ce2e68df4ca8d6174a266592b2c49.tar.gz
cpython-a0b315f5f77ce2e68df4ca8d6174a266592b2c49.tar.bz2
Issue #16661: Fix the os.getgrouplist() test by not assuming that it
gives the same output as "id -G".
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 58675e8..604e6fa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -301,6 +301,9 @@ Tests
- Issue #16559: Add more tests for the json module, including some from the
official test suite at json.org. Patch by Serhiy Storchaka.
+- Issue #16661: Fix the `os.getgrouplist()` test by not assuming that it gives
+ the same output as :command:`id -G`.
+
- Issue #16115: Add some tests for the executable argument to
subprocess.Popen(). Initial patch by Kushal Das.