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:
Paul Sokolovsky
2014-02-08 21:10:18 +02:00
parent 0a587b85fb
commit 9945f33886
5 changed files with 13 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
try:
import rawsocket as _socket
import microsocket as _socket
except:
import _socket

View File

@@ -1,5 +1,5 @@
try:
import rawsocket as socket
import microsocket as socket
except:
import socket