This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients benjamin.peterson, eric.araujo, iritkatriel, r.david.murray, serhiy.storchaka, sir-sigurd, torsten, yselivanov
Date 2020-11-06.23:04:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1604703869.27.0.186982198009.issue8488@roundup.psfhosted.org>
In-reply-to
Content
Python 3.7 (2.7 looks almost the same):

class Demo(builtins.object)
 |  Data descriptors defined here:
 |  
 |  __dict__
 |      dictionary for instance variables (if defined)
 |  
 |  __weakref__
 |      list of weak references to the object (if defined)
 |  
 |  data
 |      Doc of a data-descriptor.
 |  
 |  non_data
 |      Doc of a non-data descriptor.
 |  
 |  prop
 |      Doc of a property.

Python 3.8:

class Demo(builtins.object)
 |  Readonly properties defined here:
 |  
 |  data
 |      Doc of a data-descriptor.
 |  
 |  non_data
 |      Doc of a non-data descriptor.
 |  
 |  prop
 |      Doc of a property.
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors defined here:
 |  
 |  __dict__
 |      dictionary for instance variables (if defined)
 |  
 |  __weakref__
 |      list of weak references to the object (if defined)

Python 3.9:

class Demo(builtins.object)
 |  Readonly properties defined here:
 |  
 |  data
 |  
 |  non_data
 |  
 |  prop
 |      Doc of a property.
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors defined here:
 |  
 |  __dict__
 |      dictionary for instance variables (if defined)
 |  
 |  __weakref__
 |      list of weak references to the object (if defined)

Seems the original bug was fixed, but a regression was introduced in 3.9.
History
Date User Action Args
2020-11-06 23:04:29serhiy.storchakasetrecipients: + serhiy.storchaka, benjamin.peterson, eric.araujo, r.david.murray, torsten, yselivanov, sir-sigurd, iritkatriel
2020-11-06 23:04:29serhiy.storchakasetmessageid: <1604703869.27.0.186982198009.issue8488@roundup.psfhosted.org>
2020-11-06 23:04:29serhiy.storchakalinkissue8488 messages
2020-11-06 23:04:29serhiy.storchakacreate