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 f0168d4 commit fed0c31Copy full SHA for fed0c31
Python/initconfig.c
@@ -508,15 +508,15 @@ _Py_COMP_DIAG_IGNORE_DEPR_DECLS
508
}
509
510
#define SET_ITEM(KEY, EXPR) \
511
- do { \
512
- obj = (EXPR); \
513
- if (obj == NULL) \
514
- goto fail; \
515
- int res = PyDict_SetItemString(dict, (KEY), obj); \
516
- Py_DECREF(obj); \
517
- if (res < 0) \
518
519
- } while (0)
+ do { \
+ obj = (EXPR); \
+ if (obj == NULL) \
+ goto fail; \
+ int res = PyDict_SetItemString(dict, (KEY), obj); \
+ Py_DECREF(obj); \
+ if (res < 0) \
+ } while (0)
520
#define SET_ITEM_INT(VAR) \
521
SET_ITEM(#VAR, PyLong_FromLong(VAR))
522
#define FROM_STRING(STR) \
0 commit comments