Message7082

Author amak
Recipients amak, fwierzbicki, ryanwatkins
Date 2012-05-05.15:22:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336231374.28.0.959727262669.issue1842@psf.upfronthosting.co.za>
In-reply-to
Content
OK, I've checked in the beginnings of OS/400 support.

http://hg.python.org/jython/rev/c62b1a8fa99b

It is quite different to the support proposed in the patch, primarily because the structure of jython code involved has changed significantly.

I'm only checking this into the 2.5 branch for now: once we know it's working, I'll merge it forward to the head.

It would be great if someone with access to OS/400 could download the latest 2.5 branch and try it out.

Primarily it's about testing the os module to see if the new support works. I have made the assumption that java on OS/400 behaves the same way as standard posix.

>>> import os
>>> os._name
'ibmi'
>>> import os.path
>>> os.path.dirname("/QOpenSys/usr/bin/sh")
'/QOpenSys/usr/bin/'

If we know this support is working, we can then address the environment issues, perhaps more cleanly than in the original patch.
History
Date User Action Args
2012-05-05 15:22:54amaksetmessageid: <1336231374.28.0.959727262669.issue1842@psf.upfronthosting.co.za>
2012-05-05 15:22:54amaksetrecipients: + amak, fwierzbicki, ryanwatkins
2012-05-05 15:22:54amaklinkissue1842 messages
2012-05-05 15:22:54amakcreate