We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9905549 commit f697036Copy full SHA for f697036
Objects/abstract.c
@@ -1716,14 +1716,14 @@ PyNumber_ToBase(PyObject *n, int base)
1716
}
1717
1718
typedef struct {
1719
- const char *name;
1720
- size_t slot;
1721
- const char *iname;
1722
- size_t islot;
+ const int slot;
+ const char name[3];
+ const int islot;
+ const char iname[4];
1723
} nb_info;
1724
1725
#define NB_INFO(name, slot) \
1726
- {name, NB_SLOT(nb_##slot), name "=", NB_SLOT(nb_inplace_##slot)}
+ {NB_SLOT(nb_##slot), name, NB_SLOT(nb_inplace_##slot), name "="}
1727
1728
static nb_info nb_infos[] = {
1729
[NB_AND] = NB_INFO("&", and),
0 commit comments