[Python-Dev] Re: Thoughts on PEP 634 (Structural Pattern Matching)

2020-12-27 Thread Dave Halter
I'm late, but I still wanted to add that I share some of the criticism that Mark has brought up. I'm in love with Rust's pattern matching, so I feel like I'm not against pattern matching generally. However I feel like while the PEP is well written, there are some things that it does not tackle:

Re: [Python-Dev] Use more Argument Clinic Annotations?

2018-03-25 Thread Dave Halter
2018-03-25 18:38 GMT+02:00 Serhiy Storchaka <storch...@gmail.com>: > 25.03.18 15:36, Dave Halter пише: >> >> I recently started testing Jedi with Python 3.7. Some tests broke. I >> realized that one of the things that changed in 3.7 was the use of >> argument c

[Python-Dev] Use more Argument Clinic Annotations?

2018-03-25 Thread Dave Halter
Hi Python Devs I recently started testing Jedi with Python 3.7. Some tests broke. I realized that one of the things that changed in 3.7 was the use of argument clinic in methods like str.replace. The issue is that the text signature doesn't contain a return annotation. >>>