Fixed indentation of Python examples in C comments.

This commit is contained in:
Serhiy Storchaka 2015-06-11 00:07:47 +03:00
commit 553e156921
5 changed files with 34 additions and 34 deletions

View file

@ -4245,7 +4245,7 @@ PyDoc_STRVAR(object_subclasshook_doc,
class object:
def __format__(self, format_spec):
return format(str(self), format_spec)
return format(str(self), format_spec)
*/
static PyObject *
object_format(PyObject *self, PyObject *args)