micropython/docs/code-completion/uerrno.py

8 lines
186 B
Python

"""
uerrno 模块提供了标准的 errno 系统符号,每个符号都有对应的整数值。
"""
errorcode = ... # type: int
EEXIST = ... # type: int
EAGAIN = ... # type: int