switch descriptor howto to return value annotation (GH-7796)

This commit is contained in:
NotAFile 2018-09-10 23:35:38 +02:00 committed by Benjamin Peterson
parent 3286ce4ade
commit 28ea4c2847
1 changed files with 3 additions and 3 deletions

View File

@ -48,11 +48,11 @@ a flexible set of new tools for everyday Python programs.
Descriptor Protocol
-------------------
``descr.__get__(self, obj, type=None) --> value``
``descr.__get__(self, obj, type=None) -> value``
``descr.__set__(self, obj, value) --> None``
``descr.__set__(self, obj, value) -> None``
``descr.__delete__(self, obj) --> None``
``descr.__delete__(self, obj) -> None``
That is all there is to it. Define any of these methods and an object is
considered a descriptor and can override default behavior upon being looked up