First time here? Check out the FAQ!

steveb's profile - activity

2023-11-20 07:42:33 -0500 received badge Notable Question (source)
2023-07-25 19:08:34 -0500 received badge Popular Question (source)
2023-06-28 13:02:52 -0500 commented answer How to automatically clear OS Commands console?

I'm going to wing9 now. I will try profiling. I probably will need it in implementing blending modes with my (difficult)

2023-06-28 09:47:54 -0500 marked best answer How to automatically clear OS Commands console?

Running Wing 8.3.3.3 on MacBook Pro silicon. I run a project using Debug-->Execute This File (which, BTW, is MUCH faster for me than running debugger). In any event, the output of print statements appears in the "OS Commands" console (Why?). Is it possible to clear this console automatically at the start of a run? Currently it must be cleared "manually".

2023-06-28 07:46:46 -0500 commented answer How to automatically clear OS Commands console?

Yes I should have seen that. My bad. Thanks. I think the speed problem may have to do with the way I'm using Tkinter -

2023-06-28 06:02:21 -0500 asked a question How to automatically clear OS Commands console?

How to automatically clear OS Commands console? Running Wing 8.3.3.3 on MacBook Pro silicon. I run a project using Debug

2023-02-02 17:55:04 -0500 received badge Famous Question (source)
2023-02-02 17:55:04 -0500 received badge Notable Question (source)
2023-02-02 17:55:04 -0500 received badge Popular Question (source)
2022-07-22 08:22:01 -0500 marked best answer why does "import filename" give a SYNTAX error

I have a file A.py in the project directory and another file B.py in the same directory. In B I have the statement "import A" in the first line. I get the following error message:

Syntax Error: invalid syntax:

The same thing happens with : import A.py, import 'A.py', etc. The error is not that the file is missing or that the file has errors, but rather the import statement is syntactically incorrect.

What to do???

2022-07-22 08:20:22 -0500 received badge Student (source)
2022-07-22 08:20:08 -0500 asked a question why does "import filename" give a SYNTAX error

why does "import filename" give a SYNTAX error I have a file A.py in the project directory and another file B.py in the