Commit d741a880 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Fixed indentation of Python examples in C comments.

parent 6250df81
...@@ -1268,7 +1268,7 @@ PyWrapper_New(PyObject *d, PyObject *self) ...@@ -1268,7 +1268,7 @@ PyWrapper_New(PyObject *d, PyObject *self)
/* A built-in 'property' type */ /* A built-in 'property' type */
/* /*
class property(object): class property(object):
def __init__(self, fget=None, fset=None, fdel=None, doc=None): def __init__(self, fget=None, fset=None, fdel=None, doc=None):
if doc is None and fget is not None and hasattr(fget, "__doc__"): if doc is None and fget is not None and hasattr(fget, "__doc__"):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment