Message3762

Author pjenvey
Recipients pjenvey, thijs
Date 2008-11-09.00:17:17
SpamBayes Score 1.575805e-08
Marked as misclassified No
Message-id <1226189838.28.0.93732995493.issue1166@psf.upfronthosting.co.za>
In-reply-to
Content
Is this 64 bit java? I know there's an existing issue with utimes and 64 
bit java (on OS X, maybe others) -- though oddly enough this doesn't 
look like that issue at all.

I wasn't able to reproduce this on OS X 64 bit java (using jython trunk 
r5557, pyamf trunk).

Does the following simple case work?

import os
f = '/tmp/jython-foo'
open(f, 'w').close()
s = os.stat(f)
os.utime(f, (s.st_atime, s.st_mtime))

If you have a local Jython build and can reproduce the issue, it'd help 
to know what the actual arguments being passed to os.utime are (you 
could temporarily hack your os.py to print them out)
History
Date User Action Args
2008-11-09 00:17:18pjenveysetmessageid: <1226189838.28.0.93732995493.issue1166@psf.upfronthosting.co.za>
2008-11-09 00:17:18pjenveysetrecipients: + pjenvey, thijs
2008-11-09 00:17:18pjenveylinkissue1166 messages
2008-11-09 00:17:17pjenveycreate