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

Method connect

crates/stdlib/src/socket.rs:1605–1611  ·  view source on GitHub ↗
(
            &self,
            address: PyObjectRef,
            vm: &VirtualMachine,
        )

Source from the content-addressed store, hash-verified

1603
1604 #[pymethod]
1605 fn connect(
1606 &self,
1607 address: PyObjectRef,
1608 vm: &VirtualMachine,
1609 ) -> Result<(), IoOrPyException> {
1610 self.connect_inner(address, "connect", vm)
1611 }
1612
1613 #[pymethod]
1614 fn connect_ex(&self, address: PyObjectRef, vm: &VirtualMachine) -> PyResult<i32> {

Callers 1

connect_innerMethod · 0.45

Calls 1

connect_innerMethod · 0.80

Tested by

no test coverage detected