[issue43632] an error in the documentation of descriptor

2021-03-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks for the report. This has already been fixed for the 3.9 release and later: https://docs.python.org/3.9/howto/descriptor.html#functions-and-methods It was minor enough to not warrant a backport to 3.8. -- resolution: -> out of date stage:

[issue43632] an error in the documentation of descriptor

2021-03-26 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: docs@python -> rhettinger priority: normal -> ___ Python tracker ___ ___ Python-bugs-lis

[issue43632] an error in the documentation of descriptor

2021-03-26 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue43632] an error in the documentation of descriptor

2021-03-26 Thread 江杉
New submission from 江杉 <23533...@gmail.com>: In this section https://docs.python.org/3.8/howto/descriptor.html#functions-and-methods , there is an error: the output of CMD 'd.f.__func__' should be same as the output of 'D.__dict__['f']'. Here the former should be '', but not '' --