Message7075

Author amak
Recipients amak, fwierzbicki, ryanwatkins
Date 2012-05-01.16:41:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335890510.18.0.926202834031.issue1842@psf.upfronthosting.co.za>
In-reply-to
Content
OK, we have a problem.

The patch is against a version of jython that is nearly three years old. The code has changed significantly since then. We are not going to be able to produce a branch of 2.5.1: the changes should be checked into the main branch and released as part of 2.5.3.

The recognition of OS and setting of command shell now happens in this code

http://hg.python.org/jython/file/d53002b5f3d0/src/org/python/modules/posix/OS.java

I think I should be able to adapt your patch to the new style, but need to know the following.

What is the value for sys.registry.getProperty("python.os") and java.lang.System.getProperty("os.name") on ibmi systems. I.e. what does the following code output?

>>> import sys
>>> print sys.registry.getProperty("python.os")
>>> import java
>>> print java.lang.System.getProperty("os.name")
History
Date User Action Args
2012-05-01 16:41:50amaksetmessageid: <1335890510.18.0.926202834031.issue1842@psf.upfronthosting.co.za>
2012-05-01 16:41:50amaksetrecipients: + amak, fwierzbicki, ryanwatkins
2012-05-01 16:41:50amaklinkissue1842 messages
2012-05-01 16:41:49amakcreate