コード例 #1
0
ファイル: file.c プロジェクト: Joshorilla/micropython
mp_obj_t file_obj___exit__(uint n_args, const mp_obj_t *args) {
    return file_obj_close(args[0]);
}
コード例 #2
0
ファイル: vfs_fat_file.c プロジェクト: prusnak/micropython
STATIC mp_obj_t file_obj___exit__(size_t n_args, const mp_obj_t *args) {
    (void)n_args;
    return file_obj_close(args[0]);
}