diff --git a/pudb/__init__.py b/pudb/__init__.py index 8c32ca2..b3f058e 100644 --- a/pudb/__init__.py +++ b/pudb/__init__.py @@ -76,7 +76,9 @@ def _tty_override(): def _open_tty(tty_path): - import io, os, sys + import io + import os + import sys if sys.version_info[0] == 2: tty_file = open(tty_path, 'r+b', buffering=0) term_size = None diff --git a/pudb/debugger.py b/pudb/debugger.py index 63dfffc..c001581 100644 --- a/pudb/debugger.py +++ b/pudb/debugger.py @@ -159,7 +159,8 @@ OTHER DEALINGS IN THE SOFTWARE. # {{{ debugger interface class Debugger(bdb.Bdb): - def __init__(self, stdin=None, stdout=None, term_size=None, steal_output=False, **kwargs): + def __init__(self, stdin=None, stdout=None, term_size=None, steal_output=False, + **kwargs): # Pass remaining kwargs to python debugger framework bdb.Bdb.__init__(self, **kwargs) self.ui = DebuggerUI(self, stdin=stdin, stdout=stdout, term_size=term_size) @@ -615,10 +616,8 @@ class DirectSourceCodeProvider(SourceCodeProvider): def __eq__(self, other): return ( type(self) == type(other) - and - self.function_name == other.function_name - and - self.code is other.code) + and self.function_name == other.function_name + and self.code is other.code) def identifier(self): return "" % self.function_name @@ -862,10 +861,10 @@ class DebuggerUI(FrameVarInfoKeeper): "Show methods", iinfo.show_methods) lb = urwid.ListBox(urwid.SimpleListWalker( - id_segment + - rb_grp_show + [urwid.Text("")] + - rb_grp_access + [urwid.Text("")] + - [ + id_segment + + rb_grp_show + [urwid.Text("")] + + rb_grp_access + [urwid.Text("")] + + [ wrap_checkbox, expanded_checkbox, highlighted_checkbox, @@ -1888,11 +1887,9 @@ class DebuggerUI(FrameVarInfoKeeper): CONFIG["display"] == "curses" or ( CONFIG["display"] == "auto" - and - not ( + and not ( os.environ.get("TERM", "").startswith("xterm") - or - os.environ.get("TERM", "").startswith("rxvt") + or os.environ.get("TERM", "").startswith("rxvt") ))) if (want_curses_display