2015-11-01 05:55:13 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "py/lexer.h"
|
2017-03-14 00:45:09 +00:00
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "py/mperrno.h"
|
2015-11-01 05:55:13 +00:00
|
|
|
|
|
|
|
mp_import_stat_t mp_import_stat(const char *path) {
|
|
|
|
return MP_IMPORT_STAT_NO_EXIST;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_lexer_t *mp_lexer_new_from_file(const char *filename) {
|
2017-03-14 00:45:09 +00:00
|
|
|
mp_raise_OSError(MP_ENOENT);
|
2015-11-01 05:55:13 +00:00
|
|
|
}
|