Wingware Support's profile - activity
2023-09-22 14:34:30 -0500 | commented question | how to go into my code directly when debugging When you step into the Tetris() call, the next line of Python executed is in an enum constructor so Wing stops there. If |
2023-09-21 20:00:08 -0500 | commented answer | Path is duplicated, can't debug I've reproduced it and will be looking into it. I mistakenly used the Cygwin python that comes with msys2 rather than th |
2023-09-21 10:18:21 -0500 | commented question | how to go into my code directly when debugging Where is Wing stopping exactly? Wing does show the innermost stack frame where an exception occurs and you may need to g |
2023-09-21 00:16:28 -0500 | commented answer | Path is duplicated, can't debug I suspect you need to remove the *.pyc/pyo files or the __pycache__ directory which contains those. The files were prob |
2023-09-20 12:15:59 -0500 | answered a question | Path is duplicated, can't debug It looks like msys2's python is a Cygwin build of python so unfortunately it cannot be started from within Wing. You sho |
2023-09-08 02:38:34 -0500 | commented answer | How can I run a PyGTK program in WingIDE? It's likely the Python was compiled into byte code in such a way that the __file__ for the module or the file names stor |
2023-08-29 06:22:05 -0500 | received badge | Rapid Responder ( source ) |
2023-08-29 06:22:05 -0500 | answered a question | Boto3 autocomplete issue This can happen if a module is written in such a way that static analysis cannot determine the type of a function's retu |
2023-08-27 06:13:51 -0500 | received badge | Rapid Responder ( source ) |
2023-08-27 06:13:51 -0500 | answered a question | How can I run a PyGTK program in WingIDE? The most common problem is using a different Python installation than the one you installed PyGTK into. If you can run |
2023-08-25 10:43:40 -0500 | commented answer | remove 'Find Points of Use' highlighting after locating relevant code You need to close the search with the X inside the Uses tool. Just hiding the tool won't do it, particularly if the sea |
2023-08-25 08:50:50 -0500 | received badge | Rapid Responder ( source ) |
2023-08-25 08:50:50 -0500 | answered a question | remove 'Find Points of Use' highlighting after locating relevant code Closing the search in the Uses tool will un-highlight them. So will selecting any word and then un-selecting. You can |
2023-08-11 08:14:50 -0500 | received badge | Rapid Responder ( source ) |
2023-08-11 08:14:50 -0500 | answered a question | fixed width font in test output - not working I'm seeing this also. We'll try to fix it. Thanks for reporting this problem! |
2023-08-09 05:37:12 -0500 | received badge | Rapid Responder ( source ) |
2023-08-09 05:37:12 -0500 | answered a question | Type hint color This isn't separately configurable now, and uses the same coloring for : and the type name that you would find in other |
2023-08-07 11:47:32 -0500 | commented answer | Wing Pro 9 freezes when debugging pygame-ce project In the short-term you may also just be able to move where you put a break point, or rework code a little. In Wing, we h |
2023-08-07 09:20:22 -0500 | received badge | Rapid Responder ( source ) |
2023-08-07 09:20:22 -0500 | answered a question | Wing Pro 9 freezes when debugging pygame-ce project Based on emailed details, this is probably an XGrabPointer or similar locking up the entire Linux UI and not being relea |
2023-08-07 09:00:17 -0500 | answered a question | Mouse hover over definition display and Emacs keymap. Yes, Wing should show the value of symbols you hover over in the editor, if that code is on the stack. You can also do |
2023-08-07 08:52:00 -0500 | commented question | Wing Pro 9 freezes when debugging pygame-ce project I suspect something is going wrong with inspecting data in your code in order to display it in Wing's Stack Data or oth |
2023-07-28 22:03:22 -0500 | commented answer | OS Command issue Glad that got it working. Since the Python Environment dialog says "" I suspect there was some issue in activating the |
2023-07-28 15:05:33 -0500 | commented question | OS Command issue Is the Python 3.11 in C:\Users\EricE\AppData\Local\Programs\Python\Python311 the one that has ssort installed into it? |
2023-07-25 16:18:18 -0500 | commented answer | Extension script and importing module Pip does have some sort of automatic support for dealing with not having admin rights, but I'm not sure of the details. |
2023-07-24 09:44:35 -0500 | commented answer | Any option for double clicking a project file not opening copy Ah, yes, Wing doesn't support trying to get a canonical file name for Windows links. It does work for Posix 'ln' links |
2023-07-24 09:39:54 -0500 | received badge | Rapid Responder ( source ) |
2023-07-24 09:39:54 -0500 | answered a question | Extension script and importing module One way to approach this is to install your dependencies into Wing's Python using the pip executable located in bin/__os |
2023-07-22 16:05:26 -0500 | received badge | Rapid Responder ( source ) |
2023-07-22 16:05:26 -0500 | answered a question | Any option for double clicking a project file not opening copy Wing shouldn't be opening a file twice. However, if there are multiple editor splits, it does show open files in all sp |
2023-07-22 12:10:48 -0500 | edited question | Any option for double clicking a project file not opening copy any option for double clicking a project file not opening copy Currently, when I double-click on a file from my project |
2023-07-03 08:38:02 -0500 | commented question | Clarification about environment variables That's odd. It's working for me whether I set it in a launch config referenced from the Testing tab in Project Properti |
2023-07-03 08:29:18 -0500 | edited question | Django project : Different ways to launch the debugger django project : different ways to launch the debugger Hello I would like to make unique the way to launch debug test f |
2023-07-03 08:29:08 -0500 | answered a question | Django project : Different ways to launch the debugger If you want to launch these tests like a regular debug/execute process then you may need to create an Named Entry Point |
2023-07-03 08:29:08 -0500 | received badge | Rapid Responder ( source ) |
2023-07-03 07:51:43 -0500 | commented question | Clarification about environment variables That's odd. It's working for me whether I set it in a launch config referenced from the Testing tab in Project Properti |
2023-07-01 07:49:28 -0500 | commented question | Clarification about environment variables Are you setting the launch configuration under the Testing tab of File Properties for the individual test file, or in th |
2023-07-01 07:47:00 -0500 | commented question | Clarification about environment variables What is Environment set to under the Testing tab in Project Properties? |
2023-07-01 07:45:46 -0500 | commented answer | Using relative import in a test file Thanks for confirming this! |
2023-07-01 07:45:22 -0500 | edited question | Clarification about environment variables clarification about environment variables Hello It seems that environment variables added in a launch configuration for |
2023-06-28 14:05:10 -0500 | commented question | Using relative import in a test file I've sent email to follow-up |
2023-06-28 12:32:59 -0500 | commented question | Using relative import in a test file What version of Wing do you have? If not the latest (9.1.1.3) please try that by downloading from our website and then |
2023-06-28 09:47:56 -0500 | commented question | Using relative import in a test file What is the name of the file? testfile.py should work but testfile.py will not -- because test-file is not a valid pytho |
2023-06-28 09:47:20 -0500 | edited question | Please add 'Notepad' tool please add 'Notepad' tool it'd be great to have a place where one can store some text notes. a notepad of some sort but |
2023-06-28 09:47:07 -0500 | edited question | Using relative import in a test file using relative import in a test file I have a tests module which ends with if_name_ = '__main--' : import unittest unitt |
2023-06-28 09:46:58 -0500 | edited question | Save as copy save as copy It would be nice to be able to save a copy of a file which wouldn't change the name or location of the curr |
2023-06-28 07:57:32 -0500 | commented answer | How to automatically clear OS Commands console? Different code does bring out debug overhead differently, because it's relative to number of byte codes executed. So co |
2023-06-28 07:49:03 -0500 | commented question | Using relative import in a test file I suspect you need a different dotted name. You said parent.parent.parent is on the Python Path so I'd expect you would |
2023-06-28 07:31:35 -0500 | answered a question | How to automatically clear OS Commands console? There's an Auto-clear Consoles option in the OS Command tool's Options menu that I think does what you are looking for. |
2023-06-28 07:31:35 -0500 | received badge | Rapid Responder ( source ) |