This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author barry
Recipients barry, ned.deily, ronaldoussoren
Date 2018-10-25.19:52:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1540497129.89.0.788709270274.issue35070@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like macOS 10.14 Mojave has changed the return value for getgroups().  On 10.13 it returns the set of GIDs give by `id -G` but afaict on 10.14 it returns only the primary GID.

$ python3 -c "import os; print(os.getgroups())"
[101]
$ id -G 
101 503 701 501 12 62 80 502 33 98 100 204 250 395 398

This breaks test_posix.py.
History
Date User Action Args
2018-10-25 19:52:09barrysetrecipients: + barry, ronaldoussoren, ned.deily
2018-10-25 19:52:09barrysetmessageid: <1540497129.89.0.788709270274.issue35070@psf.upfronthosting.co.za>
2018-10-25 19:52:09barrylinkissue35070 messages
2018-10-25 19:52:09barrycreate