kopia lustrzana https://github.com/micropython/micropython-lib
errno: Add EINPROGRESS.
rodzic
fb3300974f
commit
808b492612
|
@ -32,3 +32,4 @@ EMLINK = 31 # Too many links
|
||||||
EPIPE = 32 # Broken pipe
|
EPIPE = 32 # Broken pipe
|
||||||
EDOM = 33 # Math argument out of domain of func
|
EDOM = 33 # Math argument out of domain of func
|
||||||
ERANGE = 34 # Math result not representable
|
ERANGE = 34 # Math result not representable
|
||||||
|
EINPROGRESS = 115 # Operation now in progress
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name='micropython-errno',
|
setup(name='micropython-errno',
|
||||||
version='0.1',
|
version='0.1.1',
|
||||||
description='errno module for MicroPython',
|
description='errno module for MicroPython',
|
||||||
url='https://github.com/micropython/micropython/issues/405',
|
url='https://github.com/micropython/micropython/issues/405',
|
||||||
author='MicroPython Developers',
|
author='MicroPython Developers',
|
||||||
|
|
Ładowanie…
Reference in New Issue