2015-11-01 01:55:13 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "py/lexer.h"
|
2017-03-13 20:45:09 -04:00
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "py/mperrno.h"
|
2015-11-01 01:55:13 -04: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-13 20:45:09 -04:00
|
|
|
mp_raise_OSError(MP_ENOENT);
|
2015-11-01 01:55:13 -04:00
|
|
|
}
|