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 belopolsky
Recipients belopolsky, nvetoshkin, ronaldoussoren
Date 2010-10-18.18:50:44
SpamBayes Score 6.209995e-06
Marked as misclassified No
Message-id <1287427845.79.0.904367720213.issue9344@psf.upfronthosting.co.za>
In-reply-to
Content
I don't see how this difference is relevant for exposing the functionality in python:

Linux:

int getgrouplist(const char *user, gid_t group,
                        gid_t *groups, int *ngroups);

MacOS:

int
     getgrouplist(const char *name, int basegid, int *groups, int *ngroups);

The only difference is that Linux uses gid_t and MacOS uses int.  The requested posix.getgrouplist() will take a python string and a python integer and return a list of integers.
History
Date User Action Args
2010-10-18 18:50:45belopolskysetrecipients: + belopolsky, ronaldoussoren, nvetoshkin
2010-10-18 18:50:45belopolskysetmessageid: <1287427845.79.0.904367720213.issue9344@psf.upfronthosting.co.za>
2010-10-18 18:50:44belopolskylinkissue9344 messages
2010-10-18 18:50:44belopolskycreate