[Python-Dev] 3.7.2rc1 and 3.6.8rc1 cutoffs ahead, last 3.6.x bugfix release!

2018-12-04 Thread Ned Deily
https://discuss.python.org/t/3-7-2rc1-and-3-6-8rc1-cutoffs-ahead-last-3-6-x-bugfix-release/510 We're reaching the end of the year and it's time for another pair of Python 3 maintenance releases, 3.7.2 and 3.6.8, before we ring out 2018. Since there are still some open release blocker issues an

[Python-Dev] Internal header files (Include/internal/*.h) are now installed

2018-12-04 Thread Victor Stinner
Hi, Since Python 3.7, "internal" C API (only declared if Py_BUILD_CORE is defined) are moving from Include/*.h to Include/internal/*.h. These API must not be used outside CPython. In Python 3.7, "make install" doesn't install them for example. I would like to move more private functions (prefixed

Re: [Python-Dev] Internal header files (Include/internal/*.h) are now installed

2018-12-04 Thread Antoine Pitrou
On Tue, 4 Dec 2018 16:19:46 +0100 Victor Stinner wrote: > Hi, > > Since Python 3.7, "internal" C API (only declared if Py_BUILD_CORE is > defined) are moving from Include/*.h to Include/internal/*.h. These > API must not be used outside CPython. In Python 3.7, "make install" > doesn't install the

Re: [Python-Dev] Internal header files (Include/internal/*.h) are now installed

2018-12-04 Thread Victor Stinner
Le mar. 4 déc. 2018 à 16:35, Antoine Pitrou a écrit : > > Are you ok to install "internal" header files? If yes, should we > > modify "make install" of Python 3.7 to also install them? > > +1 to both. Ok, I reopened https://bugs.python.org/issue35296 and wrote a PR: https://github.com/python/cpy

[Python-Dev] any way to subscribe to bugs and PRs on a particular topic?

2018-12-04 Thread Chris Withers
Hello, I'd like to see if I can help with unittest.mock, but don't have a huge amount of bandwidth and can't even parse let alone process the whole firehose of bpo and GH PRs. Is there  any way I can get bugs.python.org and github PRs to only tell me about things, preferably by email, that a

Re: [Python-Dev] any way to subscribe to bugs and PRs on a particular topic?

2018-12-04 Thread Serhiy Storchaka
04.12.18 21:13, Chris Withers пише: I'd like to see if I can help with unittest.mock, but don't have a huge amount of bandwidth and can't even parse let alone process the whole firehose of bpo and GH PRs. Is there  any way I can get bugs.python.org and github PRs to only tell me about things,

Re: [Python-Dev] any way to subscribe to bugs and PRs on a particular topic?

2018-12-04 Thread Mariatta Wijaya
For GitHub PRs, you can add yourself to CODEOWNERS file, so you will be automatically requested review if a PR contains changes to unittest.mock. (and you'll receive review-request notification) https://github.com/python/cpython/blob/master/.github/CODEOWNERS When GitHub sends you review request n

Re: [Python-Dev] any way to subscribe to bugs and PRs on a particular topic?

2018-12-04 Thread Terry Reedy
On 12/4/2018 2:13 PM, Chris Withers wrote: Hello, Welcome back. unittest.mock is important for everyone writing non-trivial tests. I'd like to see if I can help with unittest.mock, but don't have a huge amount of bandwidth and can't even parse let alone process the whole firehose of bpo a