errno: Add ECONNRESET.

pull/11/head
Paul Sokolovsky 2014-10-25 00:05:29 +03:00
rodzic 96bb130bb0
commit 943fbb6efc
3 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -1,3 +1,3 @@
srctype = micropython-lib
type = module
version = 0.1.2
version = 0.1.3

Wyświetl plik

@ -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',