(self)
| 484 | |
| 485 | class Dict(dict): |
| 486 | def __repr__(self): |
| 487 | return '{%s}' % ',\n '.join('%r: %r' % i for i in sorted(self.items())) |
| 488 | |
| 489 | |
| 490 | def docopt(doc, argv=None, help=True, version=None, options_first=False): |
nothing calls this directly
no outgoing calls
no test coverage detected