[Python-checkins] cpython: Fix indentation of continuation lines.

georg.brandl python-checkins at python.org
Mon Jan 18 02:00:25 EST 2016


https://hg.python.org/cpython/rev/bc625fce0aee
changeset:   99956:bc625fce0aee
user:        Georg Brandl <georg at python.org>
date:        Mon Jan 18 08:00:15 2016 +0100
summary:
  Fix indentation of continuation lines.

files:
  Modules/_testcapimodule.c |  4 ++--
  Python/pylifecycle.c      |  2 +-
  2 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -1047,7 +1047,7 @@
     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 @@
     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);
 
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c
--- a/Python/pylifecycle.c
+++ b/Python/pylifecycle.c
@@ -796,7 +796,7 @@
 
         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();

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list