-
-
Notifications
You must be signed in to change notification settings - Fork 772
Closed
Labels
Description
I am just trying out this plugin but have run into a curious problem regarding the print function.
For example
def main():
for i in xrange(0,10): print'.'
main()
The output is:
".\n.\n.\n.\n.\n.\n.\n.\n.\n.\n"
Any idea why this is spitting out a bunch of newline characters instead of what python would normally print sequentially:
.
.
.
.
.
.
.
.
.
.
I imagine I am doing something simple but I am at a loss.
Thank you
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.