Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
terminology change: native str
  • Loading branch information
thomasballinger committed Aug 20, 2017
commit 143757c568bc016261cb5459586c9cb069697162
2 changes: 1 addition & 1 deletion bpython/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def __init__(self, scr, interp, statusbar, config, idle=None):
repl.Repl.__init__(self, interp, config)
self.interp.writetb = self.writetb
self.scr = scr
self.stdout_hist = '' # str (bytes in Py2, unicode in Py3)
self.stdout_hist = '' # native str (bytes in Py2, unicode in Py3)
self.list_win = newwin(get_colpair(config, 'background'), 1, 1, 1, 1)
self.cpos = 0
self.do_exit = False
Expand Down
2 changes: 1 addition & 1 deletion bpython/urwid.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ def __init__(self, event_loop, palette, interpreter, config):
self.tooltip = urwid.ListBox(urwid.SimpleListWalker([]))
self.tooltip.grid = None
self.overlay = Tooltip(self.listbox, self.tooltip)
self.stdout_hist = '' # str (bytes in Py2, unicode in Py3)
self.stdout_hist = '' # native str (bytes in Py2, unicode in Py3)

self.frame = urwid.Frame(self.overlay)

Expand Down