mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
This patch changes the type signature of .make_new and .call object method slots to use size_t for n_args and n_kw (was mp_uint_t. Makes code more efficient when mp_uint_t is larger than a machine word. Doesn't affect ports when size_t and mp_uint_t have the same size.