summaryrefslogtreecommitdiff
path: root/Objects/stringobject.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-17 07:54:55 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-09-17 07:54:55 +0000
commitca56dd4767617a2f5e946130de4beb06442a5cd5 (patch)
tree8697f0e83d6b4f3758eaf4b89abc944b6e6db71f /Objects/stringobject.c
parentfd2f85d6e4e8abc9c943cf56cf45527d522c7882 (diff)
downloadcpython-git-ca56dd4767617a2f5e946130de4beb06442a5cd5.tar.gz
Issue #28139: Fix messed up indentation
Also update the classmethod and staticmethod doc strings and comments to match the RST documentation.
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r--Objects/stringobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index aa88152d04..60104d57db 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -3287,8 +3287,8 @@ string_zfill(PyStringObject *self, PyObject *args)
}
else
return PyString_FromStringAndSize(
- PyString_AS_STRING(self),
- PyString_GET_SIZE(self)
+ PyString_AS_STRING(self),
+ PyString_GET_SIZE(self)
);
}