[IronPython] bug: Newline isn\'t put written before the Console Prompt

Mat Steeples mat at matssoftware.co.uk
Sat Apr 1 16:20:02 CEST 2006


Hi

This is on IronPython beta 5, and happens when you\'ve got an output to the console that doesn\'t print a new line.

For example, the tutorial I\'m working through shows you how to print the Fibonacci series:

>>> a, b = 0, 1
>>> while b < 1000:
...     print b,
...     a, b = b, a+b
... 
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987

The prompt (\">>>\") on IronPython appears after the 987, rather than on the next line.

Hope this is enough information. I tried having a look through the source for the location of this, but I\'m new to IP, so I figured it would be more productinve to post it to this list! :)

Cheers,
Mat Steeples

PS: I know it\'s picky as well, but could the command line args accept ColourfulConsole as well as ColorfulConsole, as it\'s really difficult being a brit to spell colour without a u! :)




More information about the Ironpython-users mailing list