简体   繁体   中英

Python3.8 socketpair failed (s.o. cygwin)

Under cygwin console:

$ python3.8

Python 3.8.7 (default, Jan 26 2021, 07:37:32)

[GCC 10.2.0] on cygwin

Type "help", "copyright", "credits" or "license" for more information.

```>>> import socket as s```

```>>> s.socketpair()```
 
 File "\<stdin\>", line 1, in <module>
  File "/usr/lib/python3.8/socket.py", line 571, in socketpair

    ```a, b = _socket.socketpair(family, type, proto)```

SystemError: <built-in function socketpair> returned NULL without setting an error

but...

$ python2.7

Python 2.7.18 (default, Jan  2 2021, 09:22:32)

[GCC 10.2.0] on cygwin

Type "help", "copyright", "credits" or "license" for more information.

```>>> import socket as s```

```>>> s.socketpair()```

(<socket object, fd=3, family=1, type=1, protocol=0>, <socket object, fd=4, family=1, type=1, 
protocol=0>)

I don't know where to look: :((

THX

The new versions implement a workaround similar to your idea

https://sourceware.org/pipermail/cygwin/2021-February/247684.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM