[Python-Dev] Re: Helpers for dynamic bytecode generation

2019-10-25 Thread Joe Jevnik via Python-Dev
I think this probably belongs on python-list instead of python-dev because python-dev is for development _of_ python, not _with_ python. To answer your question though, there are a few tools that do this: - https://github.com/vstinner/bytecode - https://github.com/ll/codetransformer I

[Python-Dev] Re: RFC: PEP 608: Coordinated Python release

2019-10-25 Thread Victor Stinner
I replied at https://discuss.python.org/t/rfc-pep-608-coordinated-python-release/2539/9 I would prefer to not split the discussion. I understood that discuss.python.org is now preferred to discuss PEPs. And I don't want to discuss here where PEPs should be discussed :-) Victor Le ven. 25 oct.

[Python-Dev] Summary of Python tracker Issues

2019-10-25 Thread Python tracker
ACTIVITY SUMMARY (2019-10-18 - 2019-10-25) Python tracker at https://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue. Do NOT respond to this message. Issues counts and deltas: open7066 ( -8) closed 43274 (+79) total 50340 (+71) Open issues

[Python-Dev] Re: Helpers for dynamic bytecode generation

2019-10-25 Thread Yonatan Zunger
@jjevnik -- Oops! I meant to send it there and sent it here by mistake. But thank you, everyone, for the recommendations! I'll check them all out and (mercifully) will probably not try to write this from scratch. On Thu, Oct 24, 2019 at 11:05 PM Brandt Bucher wrote: > Interesting that you

[Python-Dev] Re: RFC: PEP 608: Coordinated Python release

2019-10-25 Thread Paul Moore
On Fri, 25 Oct 2019 at 16:16, Freddy Rietdijk wrote: > > I think it is more important to have CI that clearly shows the impact of dev > versions of the interpreter and core packages. Some of us in the Nixpkgs > community had this idea for Python core packages as well (and potentially >

[Python-Dev] Re: RFC: PEP 608: Coordinated Python release

2019-10-25 Thread Freddy Rietdijk
I think it is more important to have CI that clearly shows the impact of dev versions of the interpreter and core packages. Some of us in the Nixpkgs community had this idea for Python core packages as well (and potentially scientific computing packages, but that's out of scope here). This would

[Python-Dev] Re: RFC: PEP 608: Coordinated Python release

2019-10-25 Thread Ethan Furman
On 10/25/2019 07:25 AM, Victor Stinner wrote: I just posted a new PEP for comments, please reply there, rather than by email: https://discuss.python.org/t/rfc-pep-608-coordinated-python-release/2539 PEP 608: Coordinated Python release https://www.python.org/dev/peps/pep-0608/ Abstract: Block

[Python-Dev] RFC: PEP 608: Coordinated Python release

2019-10-25 Thread Victor Stinner
Hi, I just posted a new PEP for comments, please reply there, rather than by email: https://discuss.python.org/t/rfc-pep-608-coordinated-python-release/2539 PEP 608: Coordinated Python release https://www.python.org/dev/peps/pep-0608/ Abstract: Block a Python release until a compatible version

[Python-Dev] Re: Helpers for dynamic bytecode generation

2019-10-25 Thread Brandt Bucher
Interesting that you bring this up. Just earlier this week I published the first version of a new package that lets you write compiled bytecode instructions inline with pure-Python syntax. The code's still a bit messy, being only a week old and all, but it works as advertised for CPython 3.6.2