Message9597

Author helix84
Recipients helix84
Date 2015-03-09.21:46:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425937574.9.0.667172390252.issue2284@psf.upfronthosting.co.za>
In-reply-to
Content
Example code:


from javax.servlet.http import HttpServlet

class hello(HttpServlet):
        def doGet(self, request, response):
                toClient = response.getWriter()
                toClient.println('start')
                toClient.println(unassigned)
                toClient.println('end')


Under jython 2.5.2 this would throw:
NameError: global name 'unassigned' is not defined

Under jython 2.7b4 this fails silently, no stacktrace in HTTP response, no stacktrace in Tomcat log.
History
Date User Action Args
2015-03-09 21:46:14helix84setrecipients: + helix84
2015-03-09 21:46:14helix84setmessageid: <1425937574.9.0.667172390252.issue2284@psf.upfronthosting.co.za>
2015-03-09 21:46:14helix84linkissue2284 messages
2015-03-09 21:46:14helix84create