Skip to content

Commit 143757c

Browse files
terminology change: native str
1 parent 55c2655 commit 143757c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bpython/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ def __init__(self, scr, interp, statusbar, config, idle=None):
330330
repl.Repl.__init__(self, interp, config)
331331
self.interp.writetb = self.writetb
332332
self.scr = scr
333-
self.stdout_hist = '' # str (bytes in Py2, unicode in Py3)
333+
self.stdout_hist = '' # native str (bytes in Py2, unicode in Py3)
334334
self.list_win = newwin(get_colpair(config, 'background'), 1, 1, 1, 1)
335335
self.cpos = 0
336336
self.do_exit = False

bpython/urwid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ def __init__(self, event_loop, palette, interpreter, config):
596596
self.tooltip = urwid.ListBox(urwid.SimpleListWalker([]))
597597
self.tooltip.grid = None
598598
self.overlay = Tooltip(self.listbox, self.tooltip)
599-
self.stdout_hist = '' # str (bytes in Py2, unicode in Py3)
599+
self.stdout_hist = '' # native str (bytes in Py2, unicode in Py3)
600600

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

0 commit comments

Comments
 (0)