Message119062
| 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:45 | belopolsky | set | recipients:
+ belopolsky, ronaldoussoren, nvetoshkin |
| 2010年10月18日 18:50:45 | belopolsky | set | messageid: <1287427845.79.0.904367720213.issue9344@psf.upfronthosting.co.za> |
| 2010年10月18日 18:50:44 | belopolsky | link | issue9344 messages |
| 2010年10月18日 18:50:44 | belopolsky | create |
|