Skip to content

Commit

Permalink
Fix Options.__repr__ to not infinite recurse (#4514)
Browse files Browse the repository at this point in the history
  • Loading branch information
msullivan authored Jan 27, 2018
1 parent 321eb8f commit ec205be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mypy/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ def __ne__(self, other: object) -> bool:
return not self == other

def __repr__(self) -> str:
return 'Options({})'.format(pprint.pformat(self.__dict__))
d = dict(self.__dict__)
del d['clone_cache']
return 'Options({})'.format(pprint.pformat(d))

def clone_for_module(self, module: str) -> 'Options':
"""Create an Options object that incorporates per-module options.
Expand Down

0 comments on commit ec205be

Please sign in to comment.