First off, sorry for bikeshedding . I would like to start (hopefully ) short discussion about naming async variants of methods and functions in the Django. We have patches waiting for reviews so it’s about time to make the final decision. Please focus on these three:
"a" prefix (consistent with Python , e.g. __aiter__, __anext__, __aenter__, __aexit__ etc.)
The second option should be preferred as it’s mentioned in the DEP. However, the 3rd option has a big plus as it introduces API consistent with Python internals and I don’t see anything wrong in aget(), aset(), aiter(), or atouch().
I have come around on the a prefix; initially I was thinking .a.get() and so forth, but honestly I absolutely agree with idea number 3 here and think .aget() and kin are a great idea, and do directly match Python.
I think that’s several votes for the a prefix. (You preferred it right @felixxm?)
Do we need to update the DEP? Do we need anything formal for that? (I never know, think we do, and then feel it shouldn’t be such that it’s a barrier to progress, so suspect that we don’t…)