Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-20 Thread Stephen P. Molnar
On 11/20/2017 10:18 AM, Steven D'Aprano wrote: On Mon, Nov 20, 2017 at 08:18:41AM -0500, Stephen P. Molnar wrote: I'm not really looking for someone to do the programming for me. I know that the code works, because it did and produced the attached plot. I just don't know why it stopped workin

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-20 Thread Stephen P. Molnar
On 11/20/2017 09:34 AM, William Ray Wing wrote: On Nov 19, 2017, at 3:14 PM, Stephen P. Molnar mailto:s.mol...@sbcglobal.net>> wrote: On 11/19/2017 03:10 PM, William Ray Wing wrote: On Nov 19, 2017, at 11:36 AM, Stephen P. Molnar mailto:s.mol...@sbcglobal.net>> wrote: I have written a sh

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-20 Thread Alan Gauld via Tutor
On 20/11/17 11:24, Steven D'Aprano wrote: On Mon, Nov 20, 2017 at 10:26:50AM +, Alan Gauld via Tutor wrote: Actually, pasting code etc is safer since the server removes attachments. And while it is supposed to preserve plain text attachments it will throw them away if it sees *anything* tha

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-20 Thread William Ray Wing
> On Nov 20, 2017, at 9:55 AM, Stephen P. Molnar wrote: > > > On 11/20/2017 09:34 AM, William Ray Wing wrote: [byte] >> As an experiment, I took the code and moved it to my laptop (MacOS, running >> 10.12.6 where there is a complete Anaconda installation that contains >> self-consistent ve

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-20 Thread William Ray Wing
> On Nov 19, 2017, at 3:14 PM, Stephen P. Molnar wrote: > > > On 11/19/2017 03:10 PM, William Ray Wing wrote: >>> On Nov 19, 2017, at 11:36 AM, Stephen P. Molnar >>> wrote: >>> >>> I have written a short Python 3 script to plot three curves (one plot) of >>> data from a FORTRAN program. In

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-20 Thread Steven D'Aprano
On Mon, Nov 20, 2017 at 08:18:41AM -0500, Stephen P. Molnar wrote: > I'm not really looking for someone to do the programming for me. I know > that the code works, because it did and produced the attached plot. I > just don't know why it stopped working. Actually, all of my programming > expe

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-20 Thread Stephen P. Molnar
On 11/20/2017 06:24 AM, Steven D'Aprano wrote: On Mon, Nov 20, 2017 at 10:26:50AM +, Alan Gauld via Tutor wrote: Actually, pasting code etc is safer since the server removes attachments. And while it is supposed to preserve plain text attachments it will throw them away if it sees *anythin

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-20 Thread Steven D'Aprano
On Mon, Nov 20, 2017 at 10:26:50AM +, Alan Gauld via Tutor wrote: > Actually, pasting code etc is safer since the server removes > attachments. And while it is supposed to preserve plain text > attachments it will throw them away if it sees *anything* > that it thinks looks like binary. Let's

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-20 Thread Alan Gauld via Tutor
I'll echo everything Steve says except: On 20/11/17 00:23, Steven D'Aprano wrote: - Ensure your code and data are ATTACHED to the email as separate files, not copy and pasted into the body. We should be able to save the files directly to our own computers without the risk of introducin

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-19 Thread Steven D'Aprano
On Sun, Nov 19, 2017 at 03:14:11PM -0500, Stephen P. Molnar wrote: [...] > >>I have written a short Python 3 script to plot three curves (one plot) of > >>data from a FORTRAN program. [...] Stephen, please remember that we are volunteers offering services for free, not paid consultants. If you

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-19 Thread Steven D'Aprano
On Sun, Nov 19, 2017 at 04:51:06PM -0500, William Ray Wing wrote: > Unfortunately your mail reader/program has pasted it in as an RTF file > and this makes it almost impossible to look at in a text editor or > hand to the Python interpreter. What we see looks like the following > (I’ve pasted

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-19 Thread Mats Wichmann
On 11/19/2017 09:36 AM, Stephen P. Molnar wrote: > I have written a short Python 3 script to plot three curves (one plot) > of data from a FORTRAN program.  Initially the code worked and produced > the plot which is attached.  I have also attached the code and the input > data, > > In all candor,

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-19 Thread Alan Gauld via Tutor
On 19/11/17 20:14, Stephen P. Molnar wrote: In all candor, I don't have the faintest idea as to whst the problem (or problens) might be and would greatly appreciate a pointer towards the solution. You really need to post the entire error message not just the summary line. Especially since yo

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-19 Thread Stephen P. Molnar
On 11/19/2017 03:10 PM, William Ray Wing wrote: On Nov 19, 2017, at 11:36 AM, Stephen P. Molnar wrote: I have written a short Python 3 script to plot three curves (one plot) of data from a FORTRAN program. Initially the code worked and produced the plot which is attached. I have also attac

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-19 Thread William Ray Wing
> On Nov 19, 2017, at 3:14 PM, Stephen P. Molnar wrote: > > > On 11/19/2017 03:10 PM, William Ray Wing wrote: >>> On Nov 19, 2017, at 11:36 AM, Stephen P. Molnar >>> wrote: >>> >>> I have written a short Python 3 script to plot three curves (one plot) of >>> data from a FORTRAN program. In

Re: [Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-19 Thread William Ray Wing
> On Nov 19, 2017, at 11:36 AM, Stephen P. Molnar > wrote: > > I have written a short Python 3 script to plot three curves (one plot) of > data from a FORTRAN program. Initially the code worked and produced the plot > which is attached. I have also attached the code and the input data, >

[Tutor] AttributeError: 'BezierPath' object has no attribute '_draw_solid'

2017-11-19 Thread Stephen P. Molnar
I have written a short Python 3 script to plot three curves (one plot) of data from a FORTRAN program. Initially the code worked and produced the plot which is attached. I have also attached the code and the input data, In all candor, I don't have the faintest idea as to whst the problem (or