MCPcopy Index your code
hub / github.com/RustPython/RustPython / del_channel

Method del_channel

Lib/test/support/asyncore.py:287–294  ·  view source on GitHub ↗
(self, map=None)

Source from the content-addressed store, hash-verified

285 map[self._fileno] = self
286
287 def del_channel(self, map=None):
288 fd = self._fileno
289 if map is None:
290 map = self._map
291 if fd in map:
292 #self.log_info('closing channel %d:%s' % (fd, self))
293 del map[fd]
294 self._fileno = None
295
296 def create_socket(self, family=socket.AF_INET, type=socket.SOCK_STREAM):
297 self.family_and_type = family, type

Callers 4

__init__Method · 0.95
closeMethod · 0.95
secure_connectionMethod · 0.80
cmd_stlsMethod · 0.80

Calls

no outgoing calls

Tested by 2

secure_connectionMethod · 0.64
cmd_stlsMethod · 0.64