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

@ -1268,7 +1268,7 @@ PyWrapper_New(PyObject *d, PyObject *self)
/* A built-in 'property' type */
/*
class property(object):
class property(object):
def __init__(self, fget=None, fset=None, fdel=None, doc=None):
if doc is None and fget is not None and hasattr(fget, "__doc__"):