MCPcopy Create free account
hub / github.com/secdev/scapy / __init__

Method __init__

scapy/pipetool.py:669–678  ·  view source on GitHub ↗
(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

Calls 2

startMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected