socket: Update for rename microsocket -> usocket.

asyncio
Paul Sokolovsky 2014-10-11 05:18:49 +03:00
rodzic d33f35334b
commit e42b955c1d
3 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
srctype = micropython-lib
type = module
version = 0.0.3
version = 0.0.4
author = Paul Sokolovsky

Wyświetl plik

@ -6,7 +6,7 @@ from setuptools import setup
setup(name='micropython-socket',
version='0.0.3',
version='0.0.4',
description='socket module for MicroPython',
long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.",
url='https://github.com/micropython/micropython/issues/405',

Wyświetl plik

@ -1,5 +1,5 @@
from microsocket import getaddrinfo
import microsocket as _socket
from usocket import getaddrinfo
import usocket as _socket
_GLOBAL_DEFAULT_TIMEOUT = 30