Title: Signature.html
Thanks for the tips, but I'm putting this aside for a week or so  to continue with the non-graphics side of the program. I'm guided here more by examining the meteor data that worrying about side issues with the program. I can provide satisfactory results without the plot, but it would be helpful.

I think I found a very significant error message (underline is mine).
Fatal Python error: Pystring_InterInPlace: strings only please!
That's what was behind the bland "runtime error" OK dialog that IDLE produced. It suggests to me that something is seriously wrong outside the program, which apparently others have successfully worked with. It came off the matplotlib web page.

When I come back to this problem, I'll be better able to focus on it.

Alan Gauld wrote:
"Wayne Watson" <[EMAIL PROTECTED]> wrote

Yes (below), command lines are surprisingly baffling.
I've used the Win Run cmd lines before, but once one gets
into using them like DOS, it's a bit weird.

For this kind of thing you want to eliminate as many
variables as posssible so its best to just start up a
basic CMD window with a DOS prompt and run the
program by hand.

To do that start a new DOS session via Start->Run CMD.

Then:
- use CD to navigate to the folder with your script.

- Run

C:\MyFolder> python myscript.py

That should show any error messages.

- To copy and paste the content of the window go to the
CMD icon at the top left corner and click on it.

- Select the Edit->Mark menu item and use the mouse
to highlight the error text.

- Then Select Edit->Copy to copy it to the clipboard

- Paste it into an email as usual and send to the list.

Apparently, command line operation means something
a bit different in python

There are two separate concepts:
1) The OS command line - thats the "DOS prompt"
2) The Python commandline - thats the >>> python
interpreter prompt

Most IDEs provide a simulation of the python command
prompt but it will behave slightly differently - usually
with added extras. Thats why its best when debugging
strange errors to go back to the vanilla python interpreter
since thats the one that will ultimately run your code
when you double click in Explorer etc.

There are a lot of tweaks that you can do to the XP/Vista
CMD prompt to make it more user friendly (command history,
completion, enhanced editing, cut n paste etc etc) But
they can wait till later.

 bookmarked. I changed the misleading title (Windows FAQ) so that I can find it later.

The title is OK - it's the FAQ for Python windows users.
This is one of the FAQs... :-)

HTH,

Alan G.

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor


--


           Wayne Watson (Watson Adventures, Prop., Nevada City, CA)

             (121.01 Deg. W, 39.26 Deg. N) GMT-8 hr std. time)
            
        "Things are going to get a lot worse befoe they get worse."
                    -- Lily Tomlin
            
                    Web Page: <www.speckledwithstars.net/>
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to