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 nbecker
Recipients
Date 2007-07-04.14:21:37
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
python-2.5 on fedora fc7 x86_64:

os.stat returns uid > 32bit:
os.stat ('shit')
(33204, 4420723, 64768L, 1, 4294967294, 500, 0, 1183558507, 1183558507, 1183558517)

os.chown doesn't like that:
 os.chown ('shit', 4294967294, 4294967294) 
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: signed integer is greater than maximum
History
Date User Action Args
2007-08-23 14:58:18adminlinkissue1747858 messages
2007-08-23 14:58:18admincreate