Skip to content

Commit

Permalink
pprint: Simplify code
Browse files Browse the repository at this point in the history
  • Loading branch information
JukkaL committed Sep 23, 2013
1 parent b893dbd commit 03747ff
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib-python/3.2/pprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ def _safe_tuple(t: Tuple[Any, Any]) -> Tuple[_safe_key, _safe_key]:
return _safe_key(t[0]), _safe_key(t[1])

class PrettyPrinter:
_recursive = False
_readable = False

def __init__(self, indent: int = 1, width: int = 80, depth: int = None,
stream: TextIO = None) -> None:
"""Handle pretty printing operations onto a stream using a set of
Expand Down

0 comments on commit 03747ff

Please sign in to comment.