Fix cosmetic bug in delattr docstring discovered by JvR.
This commit is contained in:
parent
014518f66c
commit
df12a59305
|
@ -974,7 +974,7 @@ builtin_delattr(self, args)
|
||||||
}
|
}
|
||||||
|
|
||||||
static char delattr_doc[] =
|
static char delattr_doc[] =
|
||||||
"setattr(object, name, value)\n\
|
"delattr(object, name)\n\
|
||||||
\n\
|
\n\
|
||||||
Delete a named attribute on an object; delattr(x, 'y') is equivalent to\n\
|
Delete a named attribute on an object; delattr(x, 'y') is equivalent to\n\
|
||||||
``del x.y''.";
|
``del x.y''.";
|
||||||
|
|
Loading…
Reference in New Issue