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

Why won't KeyboardInterrupt work in Python when using Wing IDE 101?

I'm trying to do something in a loop (in this example print to 100) and cancel the count at any time by pressing 'Ctrl+C'. The test code I'm using is below, however this doesn't work (EDIT: it works in a script launched from terminal but does not…
Matt
  • 57
  • 8
1
vote
2 answers

Is there an Eclipse personality settings for Wing IDE?

While PyDev turns out to be a great IDE for python, especially if you are a former Java developer accustomed to all the eclipse ubercool navigation, it still lacks some features that Wing has, like GUI for running python unit-tests. I know Wing has…
yonix
  • 11,665
  • 7
  • 34
  • 52
1
vote
1 answer

Zooming in on the python shell wing_ide

Is there any way to zoom in on the Python Shell in Wing IDE? I am having trouble seeing the font because it is too small.
Connor Moffatt
  • 21
  • 1
  • 1
  • 2
1
vote
1 answer

In Wing IDE, how do I enable "break on exceptions" in the debugger? (exception-always-stop ())

This doc says there's an option for it, but how do I enable it? exception-always-stop () http://www.wingide.com/doc/commands/debug
Jonathan
  • 6,741
  • 7
  • 52
  • 69
1
vote
2 answers

Get Python 3.4, Pygame, and Wing 101 all working on OSX (yosemite)

I have successfully installed Python3 and Pygame using the homebrew methods found here: Installing Pygame on Mac OS X with Python 3 After it was all done, I ran IDLE3, and the Import Pygame command ran successfully. However now my goal is to get…
1
vote
1 answer

Vpython in Wing IDE

I am using Wing IDE and I have installed VIDLE with Vpython. VIDLE works fine, but if I want to use it on Wing IDE, somehow it can't import the visual module. It always gives an error "No module named visual". How can I import the visual module into…
ndha
  • 11
  • 1
1
vote
0 answers

Wing IDE pytest: how to integrate and use plugins (e.g. xdist)

The testing tool in Wing IDE (Pro) now supports the pytest unit testing framework. How can I integrate and use pytest plugins, especially xdist? For example, I would like my tests being distributed to multiple CPUs when I run them (triggered from…
langlauf.io
  • 3,009
  • 2
  • 28
  • 45
1
vote
0 answers

Error integrating Pylint on Wing IDE

After successful installation on Pylint on my Windows OS, I am able to run it on command prompt to check any python file. But when I integrate PyLint on Wing IDE v 5.0, I am getting below error on checking any python file Error executing PyLint:…
SahilDua
  • 95
  • 8
1
vote
1 answer

Cannot get suggestions when importing Python file from another folder (Wing IDE)

I have a Python file called caller.py located at C:\Temp. I have two other Python files: local_testlib.py located in C:\Temp and testlib.py located in C:\Temp\MyLibs. I am trying to import both of those files in Wing IDE Pro. import…
Alex Tereshenkov
  • 3,340
  • 8
  • 36
  • 61
1
vote
1 answer

How to include file in wing-IDE

I have a file called tweet.py located on my desktop which contains numerous functions that I would like to use in the wing-IDE. How do I include the file so I can use the functions in the python shell? I looked online but did not find anything to…
Naeem Ahmed
  • 105
  • 1
  • 2
  • 9
1
vote
2 answers

Check PEP8 in Wing IDE

I want Wing to PEP8-validate my code. I found this plugin: plugin link I put it in C:\Users\home\AppData\Roaming\Wing Personal 5\script directory, opened Wing IDE but nothing appeared. Is there any way to do PEP8 validating in Wing?
michaeluskov
  • 1,729
  • 7
  • 27
  • 53
1
vote
1 answer

Wing IDE doesn't show all methods in autocomplete bubble

I like Wing IDE. But I have some problems with autocompleting. For example, when I try write this code snippet: import socket s = socket.socket() s.connect(("rutracker.org",80)) s.send('GET / HTTP/1.0\n\n') answer = s.recv(1024) Wing helps me…
michaeluskov
  • 1,729
  • 7
  • 27
  • 53
1
vote
2 answers

Error loading Qt libraries with Wing and PyQt

I've been trying to get PyQt4 to work on my OSx machine (10.8.5) for some time - I've loaded it on my windows machine with no problem by using an installer. I have sip 4.8.5, Python 2.7 Qt 4.8.5 loaded on my machine using homebrew. When I try to…
jyeiser
  • 11
  • 1
1
vote
1 answer

How to turn on the Auto-Complete in Python Wing IDE?

I am using the Python IDE Wing and just cannot seem to find the auto-complete option. Is there even such option in this program?
Reboot_87
  • 499
  • 2
  • 10
  • 19
1
vote
1 answer

Python modules are different between IDE's

I am developing algorithms in python and mostly use IPython notebook, but when ever I need to debug I usually use Wing IDE. I'm currently having a strange problem. In the notebook, I do have a method from the matplotlib package (subplot2grid) but in…
idoda
  • 6,248
  • 10
  • 39
  • 52