Sun, 25 Aug 2019 19:25:37 +0200
Started to add the stubs for MicroPython.
# -*- coding: utf-8 -*- # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module containing stubs for API generation of the 'uerrno' module. """ errorcode = {} EACCES = 0 EADDRINUSE = 0 EAGAIN = 0 EALREADY = 0 EBADF = 0 ECONNABORTED = 0 ECONNREFUSED = 0 ECONNRESET = 0 EEXIST = 0 EHOSTUNREACH = 0 EINPROGRESS = 0 EINVAL = 0 EIO = 0 EISDIR = 0 ENOBUFS = 0 ENODEV = 0 ENOENT = 0 ENOMEM = 0 ENOTCONN = 0 EOPNOTSUPP = 0 EPERM = 0 ETIMEDOUT = 0