kopia lustrzana https://github.com/micropython/micropython-lib
uasyncio: Update for rename microsocket -> usocket.
rodzic
8e97b6972a
commit
4d0d71f974
|
@ -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
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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:
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue