Message165053
os.chown() can not change uid/gid to valid but high number.
# chown 4294967294.4294967294 a
# ls -l a
-rw-r--r-- 1 4294967294 4294967294 0 Jul 9 05:22 a
# python
Python 2.7.3 (default, Jun 24 2012, 06:19:44)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.chown("a", 4294967294, 4294967294)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OverflowError: Python int too large to convert to C long |
|
Date |
User |
Action |
Args |
2012-07-09 02:15:40 | do1 | set | recipients:
+ do1 |
2012-07-09 02:15:39 | do1 | set | messageid: <1341800139.98.0.546402243809.issue15301@psf.upfronthosting.co.za> |
2012-07-09 02:15:39 | do1 | link | issue15301 messages |
2012-07-09 02:15:38 | do1 | create | |
|