oracle / graalpython

GraalPy – A high-performance embeddable Python 3 runtime for Java
https://www.graalvm.org/python/
Other
1.25k stars 111 forks source link

Does GraalPython support socket.RAW_SOCKET? #426

Open billysb opened 1 month ago

billysb commented 1 month ago

So I have a script that uses socket.RAW_SOCKET to ping other machines. but this doesn't seem available only giving me this: AttributeError: module 'socket' has no attribute 'SOCK_RAW'

Is this available in graalpython or will i need to find a workaround? Thanks!

msimacek commented 1 month ago

Hi. Sorry, raw sockets are not supported at the moment

billysb commented 1 month ago

Alright no worries. Still mighty impressive how well graalpython runs almost perfectly with my complex project only having small issues like this one.

I'll leave this issue open so other people running into this can find it because I didn't see any other issues about this when searching.