From 23b3b04072345c372ff202e39357ceb4422c16db Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 9 Oct 2014 20:43:10 +0300 Subject: unix: Rename "microsocket" module to "usocket". Per new conventions, we'd like to consistently use "u*" naming conventions for modules which don't offer complete CPython compatibility, while offer subset or similar API. --- examples/unix/http-client.py | 2 +- examples/unix/http-server.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/unix/http-client.py b/examples/unix/http-client.py index 858420b99..f042bfeb8 100644 --- a/examples/unix/http-client.py +++ b/examples/unix/http-client.py @@ -1,5 +1,5 @@ try: - import microsocket as _socket + import usocket as _socket except: import _socket diff --git a/examples/unix/http-server.py b/examples/unix/http-server.py index f99d7974a..7affafcfd 100644 --- a/examples/unix/http-server.py +++ b/examples/unix/http-server.py @@ -1,5 +1,5 @@ try: - import microsocket as socket + import usocket as socket except: import socket -- cgit v1.2.3