From 808b492612f28a1ff6873bc6c87c33679c44a531 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 22 Apr 2014 02:34:32 +0300 Subject: [PATCH] errno: Add EINPROGRESS. --- errno/errno.py | 1 + errno/setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/errno/errno.py b/errno/errno.py index e7049184..2784dea1 100644 --- a/errno/errno.py +++ b/errno/errno.py @@ -32,3 +32,4 @@ EMLINK = 31 # Too many links EPIPE = 32 # Broken pipe EDOM = 33 # Math argument out of domain of func ERANGE = 34 # Math result not representable +EINPROGRESS = 115 # Operation now in progress diff --git a/errno/setup.py b/errno/setup.py index ca557a89..59dd63bb 100644 --- a/errno/setup.py +++ b/errno/setup.py @@ -1,7 +1,7 @@ from distutils.core import setup setup(name='micropython-errno', - version='0.1', + version='0.1.1', description='errno module for MicroPython', url='https://github.com/micropython/micropython/issues/405', author='MicroPython Developers',