Skip to content

Commit a19b5a0

Browse files
committed
py/mpconfig.h: Move PY_BUILTINS_POW3 config option to diff part of file.
With so many config options it's good to (at least try to) keep them grouped into logical sections.
1 parent 84fb292 commit a19b5a0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

py/mpconfig.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -490,11 +490,6 @@
490490
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_NONE)
491491
#endif
492492

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-
498493
#if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_LONGLONG
499494
typedef long long mp_longint_impl_t;
500495
#endif
@@ -764,6 +759,11 @@ typedef double mp_float_t;
764759
#define MICROPY_PY_BUILTINS_MIN_MAX (1)
765760
#endif
766761

762+
// Support for calls to pow() with 3 integer arguments
763+
#ifndef MICROPY_PY_BUILTINS_POW3
764+
#define MICROPY_PY_BUILTINS_POW3 (0)
765+
#endif
766+
767767
// Whether to provide the help function
768768
#ifndef MICROPY_PY_BUILTINS_HELP
769769
#define MICROPY_PY_BUILTINS_HELP (0)

0 commit comments

Comments
 (0)