]> granicus.if.org Git - python/commitdiff
Fix indentation of continuation lines.
authorGeorg Brandl <georg@python.org>
Mon, 18 Jan 2016 07:00:15 +0000 (08:00 +0100)
committerGeorg Brandl <georg@python.org>
Mon, 18 Jan 2016 07:00:15 +0000 (08:00 +0100)
Modules/_testcapimodule.c
Python/pylifecycle.c

index cc3f52d1e02755f9a3feda264de509a02a63c201..fbb4aa4674782dfc8aafbf172e05613308eb84d3 100644 (file)
@@ -1047,7 +1047,7 @@ test_k_code(PyObject *self)
     value = PyLong_AsUnsignedLongMask(num);
     if (value != ULONG_MAX)
         return raiseTestError("test_k_code",
-        "PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
+            "PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
 
     PyTuple_SET_ITEM(tuple, 0, num);
 
@@ -1066,7 +1066,7 @@ test_k_code(PyObject *self)
     value = PyLong_AsUnsignedLongMask(num);
     if (value != (unsigned long)-0x42)
         return raiseTestError("test_k_code",
-        "PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
+            "PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
 
     PyTuple_SET_ITEM(tuple, 0, num);
 
index c84c46a449ec3ce60399d39eba852f8d4392c4ed..e9db7f6351dee35d6f320cce1209a58a4686bfcb 100644 (file)
@@ -796,7 +796,7 @@ Py_NewInterpreter(void)
 
         if (initstdio() < 0)
             Py_FatalError(
-            "Py_Initialize: can't initialize sys standard streams");
+                "Py_Initialize: can't initialize sys standard streams");
         initmain(interp);
         if (!Py_NoSiteFlag)
             initsite();