MCPcopy Index your code
hub / github.com/python/cpython / _putline

Method _putline

Lib/poplib.py:114–117  ·  view source on GitHub ↗
(self, line)

Source from the content-addressed store, hash-verified

112 return socket.create_connection((self.host, self.port), timeout)
113
114 def _putline(self, line):
115 if self._debugging > 1: print('*put*', repr(line))
116 sys.audit("poplib.putline", self, line)
117 self.sock.sendall(line + CRLF)
118
119
120 # Internal: send one command to the server (through _putline())

Callers 1

_putcmdMethod · 0.95

Calls 1

sendallMethod · 0.45

Tested by

no test coverage detected