You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice it takes one more <enter> press to get the >>> prompt back when using ... in a function or class body, compared to using pass. On the "extra" line with the three-dots prompt, the cursor is not auto-indented, either. I've added underscores to show where the cursor appears on each line.
bpython version 0.23 on top of Python 3.11.1 /Users/eric/.pyenv/versions/3.11.1/bin/python3.11
>>> def foo():
... ...
... _
... _
>>> def bar():
... pass
... _
>>> class Foo():
... ...
... _
... _
>>> class Bar():
... pass
... _
>>>
For reference, the standard python console:
Python 3.11.1 (main, Jan 11 2023, 13:54:50) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> def foo():
... ...
...
>>> def bar():
... pass
...
>>> class Foo():
... ...
...
>>> class Bar():
... pass
...
>>>