( self, line, name, bufnr )
| 633 | class VimSign: |
| 634 | |
| 635 | def __init__( self, line, name, bufnr ): |
| 636 | self.line = line |
| 637 | self.name = name |
| 638 | self.bufnr = bufnr |
| 639 | |
| 640 | |
| 641 | def __eq__( self, other ): |
nothing calls this directly
no outgoing calls
no test coverage detected