[Python-Dev] Re: PEP 701 – Syntactic formalization of f-strings

2022-12-22 Thread Rob Cliffe via Python-Dev
Great stuff! 😁 Rob Cliffe On 19/12/2022 17:59, Pablo Galindo Salgado wrote: Hi everyone, I am very excited to share with you a PEP thatBatuhan Taskaya, Lysandros Nikolaou and myself have been working on recently:PEP 701 - PEP 701 – Syntactic formalization of f-strings

[Python-Dev] Re: Feature Request: Adding Way to Annotate Class Variables Distinct from Instance Variables

2022-12-22 Thread Chihiro Sakai
OK, I missed out on typing-...@python.org, and now I know this thread is off-topic on python-dev@python.org. A bit more clear example of what I want to do is: ``` class Field: def __init__(self, desc: str) -> None: self.desc = desc class FooMetaType: variable_both_class_and_instance: F