Re: Need to find the centroid of a circular camera image

2018-09-24 Thread Gene Heskett
On Monday 24 September 2018 18:47:08 Dennis Lee Bieber wrote: > On Mon, 24 Sep 2018 12:06:19 -0400, Gene Heskett > > > declaimed the following: > >On Monday 24 September 2018 10:55:23 Chris Angelico wrote: > >> On Tue, Sep 25, 2018 at 12:54 AM Gene Heskett > >> > > > >wrote: > >> > On Sunday 23

Re: [OT] master/slave debate in Python

2018-09-24 Thread Gene Heskett
On Monday 24 September 2018 16:40:22 Kirill Balunov wrote: > пн, 24 сент. 2018 г. в 22:46, Chris Angelico : > > The trouble is that making changes like this with a view to > > eliminating the words "master" and "slave" from all docs and > > comments (rather than making them to improve clarity and

Re: P = (2^N) - Q

2018-09-24 Thread Lutz Horn
Hi, > If P is the set of primes, how do I write a program ... 1. Do you plan to write this in Python? 2. What have you tried so far? 3. Does it work? Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: P = (2^N) - Q

2018-09-24 Thread Musatov
Sometimes the simplest things... I am wondering about congruences/patterns in Q. -- https://mail.python.org/mailman/listinfo/python-list

Recommended format for --log-level option

2018-09-24 Thread Victor Porton
What is the recommended format for --log-level (or --loglevel?) command line option? Is it a number or NOTSET|DEBUG|INFO|WARNING|ERROR|CRITICAL? Or should I accept both numbers and these string constants? -- Victor Porton - http://portonvictor.org -- https://mail.python.org/mailman/listinfo/p

Re: [OT] master/slave debate in Python

2018-09-24 Thread Kirill Balunov
пн, 24 сент. 2018 г. в 22:46, Chris Angelico : > > The trouble is that making changes like this with a view to > eliminating the words "master" and "slave" from all docs and comments > (rather than making them to improve clarity and accuracy) opens up the > leverage that SJWs need. "Hey, you chang

Re: [OT] master/slave debate in Python

2018-09-24 Thread Chris Angelico
On Tue, Sep 25, 2018 at 5:02 AM Thomas Jollans wrote: > > On 24/09/2018 14:52, Robin Becker wrote: > > On 23/09/2018 15:45, Albert-Jan Roskam wrote: > >> *sigh*. I'm with Hettinger on this. > >> > >> https://www.theregister.co.uk/2018/09/11/python_purges_master_and_slave_in_political_pogrom/ > >>

Re: [OT] master/slave debate in Python

2018-09-24 Thread Thomas Jollans
On 24/09/2018 14:52, Robin Becker wrote: On 23/09/2018 15:45, Albert-Jan Roskam wrote: *sigh*. I'm with Hettinger on this. https://www.theregister.co.uk/2018/09/11/python_purges_master_and_slave_in_political_pogrom/ I am as well. Don't fix what is not broken. The semantics (in programming)

Re: compiling 3.7.0 from source with custom libffi path

2018-09-24 Thread Fetchinson . via Python-list
On 9/24/18, Thomas Jollans wrote: > On 2018-09-24 16:30, Fetchinson . via Python-list wrote: >> [fetch@fetch]$ grep LIBFFI_INCLUDE Makefile >> LIBFFI_INCLUDEDIR= /opt/custom/lib/libffi-3.2.1/include >> >> So I'd say everything should work but it doesn't, I reran ./configure >> and also make o

Re: compiling 3.7.0 from source with custom libffi path

2018-09-24 Thread Thomas Jollans
On 2018-09-24 16:30, Fetchinson . via Python-list wrote: > [fetch@fetch]$ grep LIBFFI_INCLUDE Makefile > LIBFFI_INCLUDEDIR= /opt/custom/lib/libffi-3.2.1/include > > So I'd say everything should work but it doesn't, I reran ./configure > and also make of course. I'm confused. ./configure succ

Re: [OT] master/slave debate in Python

2018-09-24 Thread Léo El Amri via Python-list
On 24/09/2018 18:30, Dan Purgert wrote: > Robin Becker wrote: >> [...] just thought control of the wrong sort.. > > Is there "thought control of the right sort"? We may have to ask to Huxley -- https://mail.python.org/mailman/listinfo/python-list

Re: [OT] master/slave debate in Python

2018-09-24 Thread Dan Purgert
Robin Becker wrote: > [...] just thought control of the wrong sort.. Is there "thought control of the right sort"? -- |_|O|_| Registered Linux user #585947 |_|_|O| Github: https://github.com/dpurgert |O|O|O| PGP: 05CA 9A50 3F2E 1335 4DC5 4AEE 8E11 DDF3 1279 A281 -- https://mail.python.org/mai

Re: Need to find the centroid of a circular camera image

2018-09-24 Thread Thomas Jollans
On 2018-09-24 16:52, Gene Heskett wrote: > On Sunday 23 September 2018 16:24:23 Oscar Benjamin wrote: > >> On Sun, 23 Sep 2018 at 20:45, Gene Heskett > wrote: >>> save the image and locate the centroid of that saved image. >>> >>> Is there code to do that centroid math in somebodies "bottom desk

Re: Need to find the centroid of a circular camera image

2018-09-24 Thread Gene Heskett
On Monday 24 September 2018 10:55:23 Chris Angelico wrote: > On Tue, Sep 25, 2018 at 12:54 AM Gene Heskett wrote: > > On Sunday 23 September 2018 16:24:23 Oscar Benjamin wrote: > > > On Sun, 23 Sep 2018 at 20:45, Gene Heskett > > > > wrote: > > > > save the image and locate the centroid of that

Re: Need to find the centroid of a circular camera image

2018-09-24 Thread Chris Angelico
On Tue, Sep 25, 2018 at 12:54 AM Gene Heskett wrote: > > On Sunday 23 September 2018 16:24:23 Oscar Benjamin wrote: > > > On Sun, 23 Sep 2018 at 20:45, Gene Heskett > wrote: > > > save the image and locate the centroid of that saved image. > > > > > > Is there code to do that centroid math in som

Re: Need to find the centroid of a circular camera image

2018-09-24 Thread Gene Heskett
On Sunday 23 September 2018 16:24:23 Oscar Benjamin wrote: > On Sun, 23 Sep 2018 at 20:45, Gene Heskett wrote: > > save the image and locate the centroid of that saved image. > > > > Is there code to do that centroid math in somebodies "bottom desk > > drawer"? Something I could download and con

Re: compiling 3.7.0 from source with custom libffi path

2018-09-24 Thread Fetchinson . via Python-list
On 9/24/18, Thomas Jollans wrote: > On 2018-09-24 14:14, Fetchinson . via Python-list wrote: I'm trying to compile python 3.7.0 from source with a custom libffi path and the compiler/linker doesn't seem to pick up the right version. The system libffi doesn't have the development fil

Re: [OT] master/slave debate in Python

2018-09-24 Thread Léo El Amri via Python-list
On 24/09/2018 14:52, Robin Becker wrote: > On 23/09/2018 15:45, Albert-Jan Roskam wrote: >> *sigh*. I'm with Hettinger on this. >> >> https://www.theregister.co.uk/2018/09/11/python_purges_master_and_slave_in_political_pogrom/ >> >> > I am as well. Don't fix what is not broken. The semantics (in >

EuroPython 2019: Seeking venues

2018-09-24 Thread M.-A. Lemburg
Dear EuroPython'istas, We are in preparations of our venue RFP for the EuroPython 2019 edition and are asking for your help in finding the right locations for us to choose from. If you know of a larger venue - hotel or conference center - that can accommodate at least 1400 attendees, please send

Re: compiling 3.7.0 from source with custom libffi path

2018-09-24 Thread Thomas Jollans
On 2018-09-24 14:14, Fetchinson . via Python-list wrote: >>> I'm trying to compile python 3.7.0 from source with a custom libffi >>> path and the compiler/linker doesn't seem to pick up the right >>> version. The system libffi doesn't have the development files so I've >>> installed the latest libf

Re: [OT] master/slave debate in Python

2018-09-24 Thread Robin Becker
On 23/09/2018 15:45, Albert-Jan Roskam wrote: *sigh*. I'm with Hettinger on this. https://www.theregister.co.uk/2018/09/11/python_purges_master_and_slave_in_political_pogrom/ I am as well. Don't fix what is not broken. The semantics (in programming) might not be an exact match, but people have

Re: compiling 3.7.0 from source with custom libffi path

2018-09-24 Thread Fetchinson . via Python-list
>> I'm trying to compile python 3.7.0 from source with a custom libffi >> path and the compiler/linker doesn't seem to pick up the right >> version. The system libffi doesn't have the development files so I've >> installed the latest libffi (also from source) to /opt/custom but >> still I get >> >>

Re: compiling 3.7.0 from source with custom libffi path

2018-09-24 Thread Thomas Jollans
On 2018-09-24 10:48, Fetchinson . via Python-list wrote: > I'm trying to compile python 3.7.0 from source with a custom libffi > path and the compiler/linker doesn't seem to pick up the right > version. The system libffi doesn't have the development files so I've > installed the latest libffi (also

compiling 3.7.0 from source with custom libffi path

2018-09-24 Thread Fetchinson . via Python-list
I'm trying to compile python 3.7.0 from source with a custom libffi path and the compiler/linker doesn't seem to pick up the right version. The system libffi doesn't have the development files so I've installed the latest libffi (also from source) to /opt/custom but still I get INFO: Could not loc