On 29 Jan 2020, at 04:50, Guido van Rossum <guido@python.org> wrote:
I just found this thread (which I had flagged in my inbox last month). AFAIK we still haven't heard from anyone who is interested in merging these (relatively simple) changes into the CPython master thread. Is anyone interested in volunteering? It would be a shame if the PEP were accepted but the changes weren't landed in Python 3.9! There's time until early May (when 3.9 goes into beta), but it's really better to have this in the next alpha release, so it gets some testing.
PS. The release 3.9 schedule is PEP 596: https://www.python.org/dev/peps/pep-0596/
On Fri, Dec 27, 2019 at 7:58 AM Ivan Levkivskyi <levkivskyi@gmail.com> wrote: IIRC I sent an e-mail to the authors privately asking to do this, but maybe they don't have time. If you would like to help, you can just coordinate with them (essentially you just need to make couple PRs to cpython and typing repos).
-- Ivan
On Fri, 20 Dec 2019 at 20:06, Jakub Stasiak <jakub@stasiak.at> wrote:
On 22 Oct 2019, at 19:13, Guido van Rossum <guido@python.org> wrote:
Yes, this is ready to bring before the SC.
On Tue, Oct 22, 2019 at 9:35 AM Ivan Levkivskyi <levkivskyi@gmail.com> wrote: The mypy problem is just an implementation bug that should be fixed.
Otherwise, I think it is fine to move towards pronouncement. If the authors agree, IIUC the next step for them is to request Steering Council for a BDFL-Delegate, and then post the current PEP text for a review by the delegate.
Guido, is this right?
-- Ivan
On Wed, 16 Oct 2019 at 22:52, Jakub Stasiak <jakub@stasiak.at> wrote: Let me revive the thread.
As a way to verify the design and the implementation I added Annotated-based markers to Injector (I’ve done it quickly before, now I fully tested it and did it right). https://github.com/alecthomas/injector/commit/d50e581734d6673ab0a2d9de7ccf09... if anyone’s interested. I want to release it soon.
It was rather trivial, with the exception of testing if an object is an instance of Annotated – but once get_origin works with Annotated this won’t be an issue.
I wanted to test mypy integration and I found an issue with aliasing I think, reported here: https://github.com/python/mypy/issues/7729
All in all the typing_extensions implementation seems to be working nicely and this PEP satisfies my needs so far.
Best, Jakub
-- --Guido van Rossum (python.org/~guido) Pronouns: he/him (why is my pronoun here?) _______________________________________________ Typing-sig mailing list -- typing-sig@python.org To unsubscribe send an email to typing-sig-leave@python.org https://mail.python.org/mailman3/lists/typing-sig.python.org/
Hey all,
Since this PEP has been accepted can the typing_extensions changes be merged into CPython/typing?
If there’s already effort to do that I apologize for polluting this thread – I’ve looked and I haven’t found any. If there’s not enough resources to do that I could help with this.
Best regards, Jakub
-- --Guido van Rossum (python.org/~guido) Pronouns: he/him (why is my pronoun here?)
I agree. I asked Till and he gave me green light to merge this and I have a pull request ready for review: https://github.com/python/cpython/pull/18260 I want to emphasize one thing: since I’m importing someone else’s work I’m not sure if I did everything right – if I didn’t just let me know. Best regards, Jakub