New submission from Larry Hastings <la...@hastings.org>:

The behavior of the __annotations__ member is wildly different between the 
three objects (function, class, module) that support it.  Many of these 
differences are minor, but one in particular has been an awful wart for years: 
classes can inherit __annotations__ from their base classes.  This is 
incontestably a misfire of the original design--it is never useful, it is only 
confusing, and libraries who examine annotations have had to work around it for 
years.

I started a thread in January 2021 in which I brought up this and other 
inconsistencies with respect to __annotations_:

    
https://mail.python.org/archives/list/python-...@python.org/thread/AWKVI3NRCHKPIDPCJYGVLW4HBYTEOQYL/

The reaction was positive: yes, that's a genuine problem, and there's an easy, 
highly compatible fix that everybody liked: classes should always have an 
__annotations__ dict set.  So that the behavior is consistent, modules should 
always have one set too.

This won't be a large change.  However, there are a lot of changes flying 
around with respect to __annotations__ right now.  My plan is to get the work 
ready, then when the dust is mostly-settled I'll get it updated, reviewed, and 
merged.  Definitely before Python 3.10b1.

Long term, I'd like to get the other changes to annotations I proposed in that 
thread:
  * del o.__annotations__ always raises an exception.
  * o.__annotations__ is permitted to be None.
  * You can only set o.__annotations__ to either a dict or None.
But it's probably best to not change everything all at once.

----------
components: Interpreter Core
messages: 391490
nosy: larry
priority: normal
severity: normal
stage: needs patch
status: open
title: Add an empty annotations dict to all classes and modules
type: enhancement
versions: Python 3.10

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue43901>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to