We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b41d20a commit 503751fCopy full SHA for 503751f
bpython/curtsies.py
@@ -20,7 +20,7 @@ def main(args=None, locals_=None, banner=None):
20
config, options, exec_args = bpargs.parse(args, (
21
'scroll options', None, [
22
Option('--log', '-L', action='store_true',
23
- help=_("log debug messages to scroll.log")),
+ help=_("log debug messages to bpython-curtsies.log")),
24
Option('--type', '-t', action='store_true',
25
help=_("enter lines of file as though interactively typed")),
26
]))
@@ -53,7 +53,6 @@ def main(args=None, locals_=None, banner=None):
53
def mainloop(config, locals_, banner, interp=None, paste=None):
54
with Terminal(paste_mode=True) as tc:
55
with Window(tc, keep_last_line=True, hide_cursor=False) as term:
56
- #TODO why need to make repl first
57
with Repl(config=config,
58
locals_=locals_,
59
stuff_a_refresh_request=tc.stuff_a_refresh_request,
0 commit comments