kopia lustrzana https://github.com/micropython/micropython-lib
errno: Add ECONNRESET.
rodzic
96bb130bb0
commit
943fbb6efc
|
@ -33,5 +33,6 @@ EPIPE = 32 # Broken pipe
|
|||
EDOM = 33 # Math argument out of domain of func
|
||||
ERANGE = 34 # Math result not representable
|
||||
EAFNOSUPPORT = 97 # Address family not supported by protocol
|
||||
ECONNRESET = 104 # Connection timed out
|
||||
ETIMEDOUT = 110 # Connection timed out
|
||||
EINPROGRESS = 115 # Operation now in progress
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
srctype = micropython-lib
|
||||
type = module
|
||||
version = 0.1.2
|
||||
version = 0.1.3
|
||||
|
|
|
@ -6,7 +6,7 @@ from setuptools import setup
|
|||
|
||||
|
||||
setup(name='micropython-errno',
|
||||
version='0.1.2',
|
||||
version='0.1.3',
|
||||
description='errno 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',
|
||||
|
|
Ładowanie…
Reference in New Issue