uasyncio: Update for rename microsocket -> usocket.

pull/11/head
Paul Sokolovsky 2014-10-11 05:20:55 +03:00
rodzic 8e97b6972a
commit 4d0d71f974
3 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1,6 +1,6 @@
srctype = micropython-lib srctype = micropython-lib
type = module type = module
version = 0.6 version = 0.6.1
author = Paul Sokolovsky author = Paul Sokolovsky
long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess. long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.
depends = heapq, errno, select, logging depends = heapq, errno, select, logging

Wyświetl plik

@ -6,7 +6,7 @@ from setuptools import setup
setup(name='micropython-uasyncio', setup(name='micropython-uasyncio',
version='0.6', version='0.6.1',
description='uasyncio module for MicroPython', description='uasyncio module for MicroPython',
long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.', long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.',
url='https://github.com/micropython/micropython/issues/405', url='https://github.com/micropython/micropython/issues/405',

Wyświetl plik

@ -179,7 +179,7 @@ def sleep(secs):
yield Sleep(secs) yield Sleep(secs)
import microsocket as _socket import usocket as _socket
class StreamReader: class StreamReader: