diff options
Diffstat (limited to 'py/objgenerator.c')
-rw-r--r-- | py/objgenerator.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/py/objgenerator.c b/py/objgenerator.c index 646ae4fdd4..1b06975c96 100644 --- a/py/objgenerator.c +++ b/py/objgenerator.c @@ -28,15 +28,12 @@ #include <stdlib.h> #include <assert.h> -#include "mpconfig.h" -#include "nlr.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "runtime.h" -#include "bc.h" -#include "objgenerator.h" -#include "objfun.h" +#include "py/nlr.h" +#include "py/obj.h" +#include "py/runtime.h" +#include "py/bc.h" +#include "py/objgenerator.h" +#include "py/objfun.h" /******************************************************************************/ /* generator wrapper */ |