Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bipython prints more lines than ipython, and many more than bpython #15

Open
yump opened this issue Jul 12, 2014 · 1 comment
Open

bipython prints more lines than ipython, and many more than bpython #15

yump opened this issue Jul 12, 2014 · 1 comment

Comments

@yump
Copy link

yump commented Jul 12, 2014

I'm seeing a lot of blank lines that don't appear in ipython or bpython, and statements that don't produce any output sometimes get echoed. Sometimes not. I can't figure out exactly what circumstances cause the echoing. Example:

bpython:

>>> import time
>>> time.sleep(1)
>>> 

ipython:

In [1]: import time

In [2]: time.sleep(1)

In [3]: 

bipython:

In [1]: import time


In [3]: time.sleep(1)


In [3]: time.sleep(1)  #white

In [3]:                #blue

In [4]:                #blue

Entering empty statements also produces the echoing:

In [6]: 1   #blue

Out[6]: 1   #red

In [7]:     #blue


In [7]:     #white

In [7]:     #blue


In [7]:     #white

In [7]:     #blue
@ivanov
Copy link
Owner

ivanov commented Jul 17, 2014

thanks for the report and for bringing this to my attention - confirming this as an issue. The extra blank lines come from trying to create space for the Out prompts, which don't always appear, I'll try to hone in on this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants