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 pitrou
Recipients pitrou, spiralx
Date 2014-02-11.11:48:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392119308.69.0.438362925461.issue20589@psf.upfronthosting.co.za>
In-reply-to
Content
But owner() and group() don't return the uid or gid: they return the *name* of the owner or group (respectively). If you want the uid (resp. gid), just use st_uid (resp. st_gid) as shown in your example.

Under Unix:

>>> p = Path('setup.py')
>>> p.owner()
'antoine'
>>> p.group()
'antoine'

So if you want to fix the issue under Windows, you need to find a way to grap the file owner's name (and group, if that makes sense under the Windows permission model).

In the meantime though, perhaps the ImportError should be fixed to a NotImplementedError under Windows.
History
Date User Action Args
2014-02-11 11:48:28pitrousetrecipients: + pitrou, spiralx
2014-02-11 11:48:28pitrousetmessageid: <1392119308.69.0.438362925461.issue20589@psf.upfronthosting.co.za>
2014-02-11 11:48:28pitroulinkissue20589 messages
2014-02-11 11:48:28pitroucreate