Skip to content
Merged
Changes from all commits
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
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