keyboard-hook/test/socket-test/test-socket.py

10 lines
117 B
Python
Raw Normal View History

2024-04-11 14:11:31 +00:00
import socket
solist=[x for x in dir(socket) if x.startswith('SO_')]
solist.sort()
for x in solist:
print(x)