[Python-checkins] cpython (2.7): Issue26142 - Fix a formatting bug in c-api intro doc.

senthil.kumaran python-checkins at python.org
Sun Jan 17 20:05:19 EST 2016


https://hg.python.org/cpython/rev/4f1ed606410b
changeset:   99950:4f1ed606410b
branch:      2.7
parent:      99946:21356a5b8a5e
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Sun Jan 17 17:05:14 2016 -0800
summary:
  Issue26142 - Fix a formatting bug in c-api intro doc.

files:
  Doc/c-api/intro.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst
--- a/Doc/c-api/intro.rst
+++ b/Doc/c-api/intro.rst
@@ -258,7 +258,7 @@
            if (PyObject_SetItem(target, index, item) < 0) {
                Py_DECREF(index);
                return -1;
-       }
+           }
            Py_DECREF(index);
        }
        return 0;

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


More information about the Python-checkins mailing list