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 vstinner
Recipients amaury.forgeotdarc, sjoerd, vstinner
Date 2008-12-08.22:35:49
SpamBayes Score 0.00021841805
Marked as misclassified No
Message-id <1228775751.09.0.726835862848.issue4591@psf.upfronthosting.co.za>
In-reply-to
Content
2^31-2 doesn't fit in long on 32 bits CPU. On my Linux box, uid_t is an 
unsigned integer (32 bits unsigned integer). Why not using "unsigned 
int"? chown prototype:

   int chown(const char *path, uid_t owner, gid_t group);
History
Date User Action Args
2008-12-08 22:35:51vstinnersetrecipients: + vstinner, sjoerd, amaury.forgeotdarc
2008-12-08 22:35:51vstinnersetmessageid: <1228775751.09.0.726835862848.issue4591@psf.upfronthosting.co.za>
2008-12-08 22:35:50vstinnerlinkissue4591 messages
2008-12-08 22:35:49vstinnercreate