Skip to content

Commit 4b5b062

Browse files
committed
Fix indentation of continuation lines.
1 parent 5c60ea3 commit 4b5b062

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Modules/_testcapimodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ test_k_code(PyObject *self)
10471047
value = PyLong_AsUnsignedLongMask(num);
10481048
if (value != ULONG_MAX)
10491049
return raiseTestError("test_k_code",
1050-
"PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
1050+
"PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
10511051

10521052
PyTuple_SET_ITEM(tuple, 0, num);
10531053

@@ -1066,7 +1066,7 @@ test_k_code(PyObject *self)
10661066
value = PyLong_AsUnsignedLongMask(num);
10671067
if (value != (unsigned long)-0x42)
10681068
return raiseTestError("test_k_code",
1069-
"PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
1069+
"PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
10701070

10711071
PyTuple_SET_ITEM(tuple, 0, num);
10721072

Python/pylifecycle.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ Py_NewInterpreter(void)
796796

797797
if (initstdio() < 0)
798798
Py_FatalError(
799-
"Py_Initialize: can't initialize sys standard streams");
799+
"Py_Initialize: can't initialize sys standard streams");
800800
initmain(interp);
801801
if (!Py_NoSiteFlag)
802802
initsite();

0 commit comments

Comments
 (0)