(vm: &VirtualMachine)
| 366 | |
| 367 | #[pyattr] |
| 368 | fn flags(vm: &VirtualMachine) -> PyRef<PyDict> { |
| 369 | // On Windows, no HAVE_SEM_OPEN / HAVE_SEM_TIMEDWAIT / HAVE_BROKEN_SEM_GETVALUE |
| 370 | vm.ctx.new_dict() |
| 371 | } |
| 372 | |
| 373 | #[pyfunction] |
| 374 | fn closesocket(socket: usize, vm: &VirtualMachine) -> PyResult<()> { |