1 parent 84fb292 commit a19b5a0Copy full SHA for a19b5a0
1 file changed
py/mpconfig.h
@@ -490,11 +490,6 @@
490
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_NONE)
491
#endif
492
493
-// Support for calls to pow() with 3 integer arguments
494
-#ifndef MICROPY_PY_BUILTINS_POW3
495
-#define MICROPY_PY_BUILTINS_POW3 (0)
496
-#endif
497
-
498
#if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_LONGLONG
499
typedef long long mp_longint_impl_t;
500
@@ -764,6 +759,11 @@ typedef double mp_float_t;
764
759
#define MICROPY_PY_BUILTINS_MIN_MAX (1)
765
760
766
761
762
+// Support for calls to pow() with 3 integer arguments
763
+#ifndef MICROPY_PY_BUILTINS_POW3
+#define MICROPY_PY_BUILTINS_POW3 (0)
+#endif
+
767
// Whether to provide the help function
768
#ifndef MICROPY_PY_BUILTINS_HELP
769
#define MICROPY_PY_BUILTINS_HELP (0)
0 commit comments