You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
python/_jsonnet.c:150:19: warning: comparison of integers of different signs: 'int' and 'const size_t' (aka 'const unsigned long') [-Wsign-compare]
for (i = 0; i < ctx->argc; ++i) {
~ ^ ~~~~~~~~~
Change type of index loop (i) to Py_ssize_t like in all other places in the code.
Cast ctx->argc to Py_ssize_t to make them the same type
Useful link https://www.python.org/dev/peps/pep-0353
0 commit comments