Skip to content

Commit 3c72749

Browse files
committed
Vertically algin continuation character (\) per PEP-7
1 parent 66b060d commit 3c72749

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Modules/_remote_debugging/_remote_debugging.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,15 @@ typedef enum _WIN32_THREADSTATE {
174174
#define THREAD_STATUS_HAS_EXCEPTION (1 << 4)
175175

176176
/* Exception cause macro */
177-
#define set_exception_cause(unwinder, exc_type, message) \
178-
do { \
179-
if (!PyErr_ExceptionMatches(PyExc_PermissionError)) { \
180-
if (!PyErr_Occurred()) { \
181-
PyErr_SetString(exc_type, message); \
182-
} else if (unwinder->debug) { \
183-
_PyErr_FormatFromCause(exc_type, "%s", message); \
184-
} \
185-
} \
177+
#define set_exception_cause(unwinder, exc_type, message) \
178+
do { \
179+
if (!PyErr_ExceptionMatches(PyExc_PermissionError)) { \
180+
if (!PyErr_Occurred()) { \
181+
PyErr_SetString(exc_type, message); \
182+
} else if (unwinder->debug) { \
183+
_PyErr_FormatFromCause(exc_type, "%s", message); \
184+
} \
185+
} \
186186
} while (0)
187187

188188
/* ============================================================================

0 commit comments

Comments
 (0)