We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 041a84e commit 1662e02Copy full SHA for 1662e02
1 file changed
py/moduerrno.c
@@ -151,6 +151,7 @@ const char *mp_common_errno_to_str(mp_obj_t errno_val, char *buf, size_t len) {
151
case EEXIST: desc = translate("File exists"); break;
152
case ENODEV: desc = translate("Unsupported operation"); break;
153
case EINVAL: desc = translate("Invalid argument"); break;
154
+ case ENOSPC: desc = translate("No space left on device"); break;
155
case EROFS: desc = translate("Read-only filesystem"); break;
156
}
157
if (desc != NULL && desc->length <= len) {
0 commit comments