Questions tagged [wing-ide]

Wing IDE is an integrated development environment for Python, made by Wingware and available both in free and paid editions.

When asking questions it helps to mention which edition (Pro, Personal, or 101), which Wing version, and which OS type/version you are using.

108 questions
1
vote
1 answer

wingide feature

Does wingide have an eclipse-like open resource feature (ctrl+shift+r)?
m2o
  • 6,475
  • 6
  • 27
  • 24
1
vote
1 answer

Wing IDE The debug server encountered an error in probing locals

I am running Wing IDE 5 with Python 2.4. Everything was fine until I tried to debug and set a breakpoint. Arriving at the breakpoint I get an error message: "The debug server encountered an error in probing locals or globals..." And the Stack Data…
Joymaker
  • 813
  • 1
  • 9
  • 23
1
vote
1 answer

How to stop Wing IDE from opening imported modules on exception

I'm setting up Wing IDE to run my code, and have a few libraries imported. When my code hits an exception, wing'll automatically open up numpy or openpyxl to where the the exception occurred. How to I prevent Wing from opening up some library…
phfb
  • 121
  • 2
  • 12
1
vote
2 answers

Wing IDE + Python 2.4: no module named functools

I need to use Python 2.4 to be compatible with an old Python extension not easily replaced. So I installed Python 2.4 and wing IDE 101 v.6, and directed Wing to use that Python (it wasn't automatic). I have done this combination many times before on…
Joymaker
  • 813
  • 1
  • 9
  • 23
1
vote
1 answer

In WingIDE, how do I ignore exceptions at specific locations when "Always Report" is activated?

I want to 'always' break on AssertionError, except for certain locations. E.g. ..site-packages/_pytest/config/__init__.py an exception is thrown just to check whether assertions are activated: def _assertion_supported(): try: assert False …
frans
  • 8,868
  • 11
  • 58
  • 132
1
vote
2 answers

Wing101 is defaulting to python 2.7 even though I have the latest version installed on my Mac

I installed Python 3.7 for my Mac Book Pro and in Wing101 it still uses Python 2.7.. anyone who can help me out?
1
vote
4 answers

Problem with lack of autocomplete/casting in python

I have a situation where in first class I declare array, and I pass it to another object, which prints name of elements in this array. It works, but when I input 'car.' in ReadCarNames ide doesn't suggest me 'name' ? I'm trying it in wing ide 4 pro.…
user278618
  • 19,306
  • 42
  • 126
  • 196
1
vote
1 answer

Does Wing-IDE run in the background? If so, how slowly?

Does Wing-IDE run in the background? If so, how slowly? I've been running a find-and-replace on basically a single line, for about 10 hours in the background, about 20000+ replaces have to be done. Checking my CPU, and when Wing is not the active…
Malady
  • 251
  • 1
  • 12
1
vote
0 answers

Debugging Externally Launched Code in Wing IDE

I've been trying to find a solution for this but no luck so far. I'm trying to debug an externally launched code in WingIDE with the following code: import wingdbstub wingdbstub.Ensure() And I received an exception during the debug: ValueError: No…
navy_marble
  • 41
  • 1
  • 1
  • 5
1
vote
2 answers

Python: TypeError: str, bytes or bytearray expected, not int

I'm trying to create a simple server to client based chat program and the issue is that when I try to execute c.sendto(data,client) this error appears saying that Client is an int but it's a tuple containing the port number and the address. I'm I…
Kozero
  • 41
  • 1
  • 2
  • 12
1
vote
2 answers

How to mimic a jupyter notebook cell in regular python script to plot multiple images and easily review them?

I tend to switch back & forth between Jupyter notebooks and the Wing IDE for debugging code. What I love about the Jupyter notebook is that I can run a cell and generate a sequence of images, with code like this: import matplotlib.pyplot as plt for…
Arjaan Buijk
  • 1,306
  • 16
  • 18
1
vote
2 answers

How do you index a list in a txt file and call on the indexed values?

I am attempting to index my list, and then call on the last two values in each list separately. For example ['Ashe', '1853282.679', '1673876.66', '1 ', '2 \n'] ['Alleghany', '1963178.059', '1695301.229', '0 ', '1 \n'] ['Surry', '2092564.258',…
A_Worthy
  • 65
  • 1
  • 2
  • 12
1
vote
1 answer

pylint wingIDE not working

I'm trying for the first time wingIDE. I setup wingIDE environment to utilize the /urs/local/bin/python3. I install pylint with the following command... pip3 install pylint. I test pylint utilizing the terminal and is working. However, following…
redeemefy
  • 4,521
  • 6
  • 36
  • 51
1
vote
1 answer

Using wingIDE with a new module (not recognized)

Using my terminal, the code "from PIL import Image" works perfectly and is recognized by my computer. This allows me to get images using the path address. Here is my issue, when I open wingIDE and try the same code...this module isn't…
ARW
  • 61
  • 2
  • 11
1
vote
2 answers

Google App Engine development server is slow to start up when using WingIDE

I'm developing on Google App Engine. I am using WingIDE (a python IDE) to debug on the development server. I have several thousand entities in my datastore and I can see that when the development server starts up, it has to go through…
speedplane
  • 15,673
  • 16
  • 86
  • 138