Method
__init__
(self, name=None, keepterm=True, newlines=True,
openearly=True)
Source from the content-addressed store, hash-verified
| 667 | """ |
| 668 | |
| 669 | def __init__(self, name=None, keepterm=True, newlines=True, |
| 670 | openearly=True): |
| 671 | # type: (Optional[str], bool, bool, bool) -> None |
| 672 | Sink.__init__(self, name=name) |
| 673 | self.keepterm = keepterm |
| 674 | self.newlines = newlines |
| 675 | self.openearly = openearly |
| 676 | self.opened = False |
| 677 | if self.openearly: |
| 678 | self.start() |
| 679 | |
| 680 | if WINDOWS: |
| 681 | def _start_windows(self): |
Callers
nothing calls this directly
Tested by
no test coverage detected