Message7127

Author Nsakala
Recipients Nsakala
Date 2012-05-22.08:46:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337676381.18.0.522225247607.issue1892@psf.upfronthosting.co.za>
In-reply-to
Content
!! Source cloned and compiled form trunk (http://hg.python.org/jython)

/opt/jython-2.7a1+/bin/jython -c 'import sys; print sys.path'
['', '/opt/jython-2.7a1+/Lib', '/opt/jython-2.7a1+/__classpath__', '/opt/jython-2.7a1+/__pyclasspath__']

!! The problem is located at Lib/site.py line 68, python_implementation is a function so this will always be False

_is_jython = _platform.python_implementation == "Jython"

!! fix

_is_jython = _platform.python_implementation() == "Jython"
History
Date User Action Args
2012-05-22 08:46:21Nsakalasetrecipients: + Nsakala
2012-05-22 08:46:21Nsakalasetmessageid: <1337676381.18.0.522225247607.issue1892@psf.upfronthosting.co.za>
2012-05-22 08:46:21Nsakalalinkissue1892 messages
2012-05-22 08:46:20Nsakalacreate