Issue1229

classification
Title: os.utime fails in Jython2.5b1
Type: Severity: normal
Components: Versions: 2.5b1
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pjenvey, yanne
Priority: Keywords:

Created on 2009-01-12.09:58:49 by yanne, last changed 2009-01-12.21:58:54 by pjenvey.

Messages
msg4030 (view) Author: Janne Härkönen (yanne) Date: 2009-01-12.09:58:48
Jython 2.5b1 (trunk:5903:5905, Jan 9 2009, 16:01:29) 
[Java HotSpot(TM) Server VM (Sun Microsystems Inc.)] on java1.6.0_10
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.utime('README.txt', (1,1))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/jth/jython2.5b1/Lib/os.py", line 557, in utime
    atimeval = _to_timeval(times[0])
  File "/home/jth/jython2.5b1/Lib/os.py", line 574, in _to_timeval
    from org.jruby.ext.posix.util import Platform
ImportError: No module named jruby
>>>
msg4036 (view) Author: Philip Jenvey (pjenvey) Date: 2009-01-12.21:58:54
This was fixed in trunk shortly after the release
History
Date User Action Args
2009-01-12 21:58:54pjenveysetstatus: open -> closed
resolution: fixed
messages: + msg4036
nosy: + pjenvey
2009-01-12 09:59:07yannesettitle: os.utime fails in Jython2.5 -> os.utime fails in Jython2.5b1
2009-01-12 09:58:49yannecreate