]> granicus.if.org Git - python/commitdiff
switch descriptor howto to return value annotation (GH-7796)
authorNotAFile <notafile@gmail.com>
Mon, 10 Sep 2018 21:35:38 +0000 (23:35 +0200)
committerBenjamin Peterson <benjamin@python.org>
Mon, 10 Sep 2018 21:35:38 +0000 (14:35 -0700)
Doc/howto/descriptor.rst

index 6e4aa3e975f6f431f101504c5af14b21fd74471a..7b00d947f46bc0aff40a904e4e038ddea94e6dd7 100644 (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