We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6ff8d3 commit 5d6f9cbCopy full SHA for 5d6f9cb
bpython/cli.py
@@ -756,7 +756,8 @@ def p_key(self, key):
756
self.cut_to_buffer()
757
return ''
758
759
- elif key in key_dispatch[OPTS.yank_from_buffer_key]: # yank from buffer
+ elif key in key_dispatch[OPTS.yank_from_buffer_key]:
760
+ # yank from buffer
761
self.yank_from_buffer()
762
763
bpython/repl.py
@@ -390,7 +390,8 @@ def get_args(self):
390
# the arguments
391
stack = [['', 0, '']]
392
try:
393
- for (token, value) in PythonLexer().get_tokens(self.current_line()):
+ for (token, value) in PythonLexer().get_tokens(
394
+ self.current_line()):
395
if token is Token.Punctuation:
396
if value in '([{':
397
stack.append(['', 0, value])
0 commit comments