We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77cfebf commit d121d0aCopy full SHA for d121d0a
1 file changed
bpython/repl.py
@@ -610,14 +610,6 @@ def pastebin(self):
610
paste_url = paste_url_template.safe_substitute(paste_id=paste_id)
611
self.statusbar.message('Pastebin URL: %s' % (paste_url, ), 10)
612
613
- def make_list(self, items):
614
- """Compile a list of items. At the moment this simply returns
615
- the list; it's here in case I decide to add any more functionality.
616
- I originally had this method return a list of items where each item
617
- was prepended with a number/letter so the user could choose an option
618
- but it doesn't seem appropriate for readline-like behaviour."""
619
- return items
620
-
621
def push(self, s, insert_into_history=True):
622
"""Push a line of code onto the buffer so it can process it all
623
at once when a code block ends"""
0 commit comments