Re: [Python-Dev] Star the CPython GitHub project if you like Python!

2017-07-04 Thread Terry Reedy
On 7/4/2017 10:22 AM, Ben Hoyt wrote: Nice! I also posted it on reddit.com/r/Python , where it got a bit of traction: https://www.reddit.com/r/Python/comments/6kg4w0/cpython_recently_moved_to_github_star_the_project/ I just posted on python-list. -- Terry Jan

Re: [Python-Dev] Star the CPython GitHub project if you like Python!

2017-07-04 Thread Chris Jerdonek
Great work, Victor! It seems like this would be an easy thing to mention at the beginning of conference talks and meetup presentations, and also something to ask coworkers if you work at a company that uses Python (e.g. on workplace Slack channels, etc). --Chris On Tue, Jul 4, 2017 at 6:15 AM,

Re: [Python-Dev] New work-in-progress bisection tool for the Python test suite (in regrtest)

2017-07-04 Thread Victor Stinner
2017-07-04 16:27 GMT+02:00 Nick Coghlan : > That concern just doesn't apply to the *stdlib* modules doing a normal > top-level "import bisect". Hum, ok. I created a PR which removes '' and Lib/test/ from sys.path, and rename again test.bisectcmd to test.bisect. Would you mind

Re: [Python-Dev] New work-in-progress bisection tool for the Python test suite (in regrtest)

2017-07-04 Thread Nick Coghlan
On 4 July 2017 at 22:10, Victor Stinner wrote: > 2017-07-04 13:22 GMT+02:00 Nick Coghlan : >> That means if test.bisect is shadowing the top level bisect module >> when backported, it suggests that the test.regrtest directory is >> ending up on

Re: [Python-Dev] Star the CPython GitHub project if you like Python!

2017-07-04 Thread Ben Hoyt
Nice! I also posted it on reddit.com/r/Python, where it got a bit of traction: https://www.reddit.com/r/Python/comments/6kg4w0/cpython_recently_moved_to_github_star_the_project/ -Ben On Tue, Jul 4, 2017 at 9:15 AM, Victor Stinner wrote: > 4 days later, we got +2,389

Re: [Python-Dev] Buildbot report (almost July)

2017-07-04 Thread Victor Stinner
2017-06-29 17:09 GMT+02:00 Victor Stinner : > Correct me if I'm wrong, but, for the first time, *all reference > leaks* have been fixed on *all branches* (2.7, 3.5, 3.6 and master), > on *Linux and Windows*! Before, we mostly focused on the master branch > (called

Re: [Python-Dev] Star the CPython GitHub project if you like Python!

2017-07-04 Thread Victor Stinner
4 days later, we got +2,389 new stars, thank you! (8,539 => 10,928) Python moved from the 11th place to the 9th, before Elixir and Julia. Python is still behind Ruby (12,511) and PHP (12,318), but it's already much better than before! Victor 2017-06-30 15:59 GMT+02:00 Victor Stinner

Re: [Python-Dev] New work-in-progress bisection tool for the Python test suite (in regrtest)

2017-07-04 Thread Victor Stinner
2017-07-04 13:22 GMT+02:00 Nick Coghlan : > That means if test.bisect is shadowing the top level bisect module > when backported, it suggests that the test.regrtest directory is > ending up on sys.path for the affected test run (e.g. because the > tests were run as "python

Re: [Python-Dev] New work-in-progress bisection tool for the Python test suite (in regrtest)

2017-07-04 Thread Nick Coghlan
On 4 July 2017 at 21:03, Victor Stinner wrote: > 2017-07-04 12:52 GMT+02:00 Nick Coghlan : >> I know it's longer, but perhaps it would make sense to put the >> bisection helper under "python -m test.support.bisect" in both Python >> 2 & 3? > > For me,

Re: [Python-Dev] New work-in-progress bisection tool for the Python test suite (in regrtest)

2017-07-04 Thread Lele Gaifax
Nick Coghlan writes: > On 4 July 2017 at 19:55, Victor Stinner wrote: >> On Python 2, the addition of Lib/test/bisect.py caused conflict with >> Lib/bisect.py when running the Python test suite :-( I chose to rename >> Lib/test/bisect.py to

Re: [Python-Dev] New work-in-progress bisection tool for the Python test suite (in regrtest)

2017-07-04 Thread Victor Stinner
2017-07-04 12:52 GMT+02:00 Nick Coghlan : > I know it's longer, but perhaps it would make sense to put the > bisection helper under "python -m test.support.bisect" in both Python > 2 & 3? For me, test.support is a toolkit to *write* tests, not really to run tests. I don't

Re: [Python-Dev] New work-in-progress bisection tool for the Python test suite (in regrtest)

2017-07-04 Thread Nick Coghlan
On 4 July 2017 at 19:55, Victor Stinner wrote: > On Python 2, the addition of Lib/test/bisect.py caused conflict with > Lib/bisect.py when running the Python test suite :-( I chose to rename > Lib/test/bisect.py to Lib/test/bisectcmd.py to reduce changes caused > by this

Re: [Python-Dev] New work-in-progress bisection tool for the Python test suite (in regrtest)

2017-07-04 Thread Victor Stinner
On Python 2, the addition of Lib/test/bisect.py caused conflict with Lib/bisect.py when running the Python test suite :-( I chose to rename Lib/test/bisect.py to Lib/test/bisectcmd.py to reduce changes caused by this new debug tool. So only in Python 2.7, you have to run: ./python -m