mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 11:10:14 +01:00
Rename "rawsocket" module to "microsocket".
It's no longer intended to provide just "raw" socket interface, may include some convenience methods for compatibility with CPython socket - but anyway just minimal set required to deal with socket client and servers, not wider network functionality.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
try:
|
||||
import rawsocket as _socket
|
||||
import microsocket as _socket
|
||||
except:
|
||||
import _socket
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
try:
|
||||
import rawsocket as socket
|
||||
import microsocket as socket
|
||||
except:
|
||||
import socket
|
||||
|
||||
|
||||
Reference in New Issue
Block a user