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 owsla
Recipients
Date 2007-07-12.15:16:35
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
On at least some Unix platforms, uid_t and gid_t are mapped to unsigned int. Python parses the values for chown() into signed ints. This causes an exception when a UID is greater than INT_MAX.

For a few releases now, 64-bit Fedora has used UINT_MAX-1 as the UID of the nfsnobody user. Python programs chown'ing to the nfsnobody user encounter this problem.

The fix is only two lines and is attached. This issue is also documented in Bug 1747858.
History
Date User Action Args
2007-08-23 15:59:08adminlinkissue1752703 messages
2007-08-23 15:59:08admincreate