From 9945f338863cd1bc0ce483c0eb70c41fbdb710f1 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 8 Feb 2014 21:10:18 +0200 Subject: 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. --- examples/unix/sock-client.py | 2 +- examples/unix/sock-server.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/unix/sock-client.py b/examples/unix/sock-client.py index 08a39b196..858420b99 100644 --- a/examples/unix/sock-client.py +++ b/examples/unix/sock-client.py @@ -1,5 +1,5 @@ try: - import rawsocket as _socket + import microsocket as _socket except: import _socket diff --git a/examples/unix/sock-server.py b/examples/unix/sock-server.py index f08aede3c..f99d7974a 100644 --- a/examples/unix/sock-server.py +++ b/examples/unix/sock-server.py @@ -1,5 +1,5 @@ try: - import rawsocket as socket + import microsocket as socket except: import socket -- cgit v1.2.3