summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2010-07-24 10:05:19 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2010-07-24 10:05:19 (GMT)
commitac08e302de73e6562787a0f3a1b2f6bdb3a3181b (patch)
tree679c8c5cacf2026e8fab5ecc426395f4f23cc5d8 /Misc
parenta417db544e8b58aeefb7cc57ed3274dbb93d944f (diff)
downloadcpython-ac08e302de73e6562787a0f3a1b2f6bdb3a3181b.zip
cpython-ac08e302de73e6562787a0f3a1b2f6bdb3a3181b.tar.gz
cpython-ac08e302de73e6562787a0f3a1b2f6bdb3a3181b.tar.bz2
Merged revisions 83124 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint ................ r83124 | ronald.oussoren | 2010-07-24 10:46:41 +0100 (Sat, 24 Jul 2010) | 15 lines Merged revisions 83088 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83088 | ronald.oussoren | 2010-07-23 14:53:51 +0100 (Fri, 23 Jul 2010) | 8 lines This fixes issue7900 by adding code that deals with the fact that getgroups(2) might return more that MAX_GROUPS on OSX. See the issue (and python-dev archives) for the gory details. Summarized: OSX behaves rather oddly and Apple says this is intentional. ........ ................
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4856c79..d9cb0ee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -312,6 +312,13 @@ Library
Extension Modules
-----------------
+- Issue #7900: The getgroups(2) system call on MacOSX behaves rather oddly
+ compared to other unix systems. In particular, os.getgroups() does
+ not reflect any changes made using os.setgroups() but basicly always
+ returns the same information as the id command.
+
+ os.getgroups() can now return more than 16 groups on MacOSX.
+
- Issue #9277: Fix bug in struct.pack for bools in standard mode
(e.g., struct.pack('>?')): if conversion to bool raised an exception
then that exception wasn't properly propagated on machines where