diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-10-09 20:43:10 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-10-09 20:43:10 +0300 |
commit | 23b3b04072345c372ff202e39357ceb4422c16db (patch) | |
tree | 31ab6c219f8c219229eda826fa6c037f8539c132 /examples | |
parent | a2d8f98a7ebff40e0e6271566d7d49b43966f12b (diff) | |
download | micropython-23b3b04072345c372ff202e39357ceb4422c16db.tar.gz micropython-23b3b04072345c372ff202e39357ceb4422c16db.zip |
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.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/unix/http-client.py | 2 | ||||
-rw-r--r-- | examples/unix/http-server.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/unix/http-client.py b/examples/unix/http-client.py index 858420b99f..f042bfeb83 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 f99d7974a7..7affafcfd6 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 |