Message6433

Author pjenvey
Recipients pjenvey
Date 2011-03-12.22:27:39
SpamBayes Score 7.980473e-10
Marked as misclassified No
Message-id <1299968859.8.0.348739754225.issue1716@psf.upfronthosting.co.za>
In-reply-to
Content
{{{

Jython 2.5.2 (Release_2_5maint:7220, Mar 12 2011, 17:25:54) 
[Java HotSpot(TM) 64-Bit Server VM (Apple Inc.)] on java1.6.0_17
Type "help", "copyright", "credits" or "license" for more information.
>>> xrange(3)[0:1]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
java.lang.NullPointerException
	at org.python.core.PySystemState.displayhook(PySystemState.java:1234)
	at org.python.core.PySystemStateFunctions.__call__(PySystemState.java:1409)
	at org.python.core.PyObject.invoke(PyObject.java:3585)
	at org.python.core.Py.printResult(Py.java:1800)
	at org.python.pycode._pyx1.f$0(<stdin>:1)
	at org.python.pycode._pyx1.call_function(<stdin>)
	at org.python.core.PyTableCode.call(PyTableCode.java:165)
	at org.python.core.PyCode.call(PyCode.java:18)
	at org.python.core.Py.runCode(Py.java:1261)
	at org.python.core.Py.exec(Py.java:1305)
	at org.python.util.PythonInterpreter.exec(PythonInterpreter.java:215)
	at org.python.util.InteractiveInterpreter.runcode(InteractiveInterpreter.java:89)
	at org.python.util.InteractiveInterpreter.runsource(InteractiveInterpreter.java:70)
	at org.python.util.InteractiveInterpreter.runsource(InteractiveInterpreter.java:46)
	at org.python.util.InteractiveConsole.push(InteractiveConsole.java:110)
	at org.python.util.InteractiveConsole.interact(InteractiveConsole.java:90)
	at org.python.util.jython.run(jython.java:317)
	at org.python.util.jython.main(jython.java:129)

java.lang.NullPointerException: java.lang.NullPointerException




Python 2.5.4 (r254:67916, Aug  2 2010, 20:09:39) 
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> xrange(3)[0:1]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: sequence index must be integer, not 'slice'
}}}
History
Date User Action Args
2011-03-12 22:27:39pjenveysetrecipients: + pjenvey
2011-03-12 22:27:39pjenveysetmessageid: <1299968859.8.0.348739754225.issue1716@psf.upfronthosting.co.za>
2011-03-12 22:27:39pjenveylinkissue1716 messages
2011-03-12 22:27:39pjenveycreate