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
2
votes
1 answer

Print Urdu/Arabic Language in Console (Python)

I am a newbie and i don't know how to set my console to print urdu / arabic characters i am using Wing IDE when i run this code print "طجکسعبکبطکسبطب" i get this on my console ╪╖╪¼┌⌐╪│╪╣╪¿┌⌐╪¿╪╖┌⌐╪│╪¿╪╖╪¿
M Talha Afzal
  • 231
  • 1
  • 5
  • 17
2
votes
1 answer

Finding uninitialized variables before running script

How do I detect whether all variables have been initialized in a Python script before running the script? Ideally, I would like my compiler (currently Wing IDE) to detect errors as part of the build/compilation process. This is to prevent the…
pir
  • 5,513
  • 12
  • 63
  • 101
2
votes
2 answers

Generate function calls tree from multiple Python files

I have inherited a bunch of Python files and looking for a way to get an understanding of what is going on within them by collecting information about all the functions that have been defined and called within those files. Example of a file…
Alex Tereshenkov
  • 3,340
  • 8
  • 36
  • 61
2
votes
1 answer

Wing101 - Configure python 3.3.2 from 2.7.2 on a mac

I am relatively new to programming, and I am using Wing101 version: 5.0.0-b8 (rev 29847). The Python Shell within Wing101, is version 2.7.2, how do I configure it to open python 3.3.2. I have downloaded Python 3.3.2 and I need the custom Python…
Vabby
  • 23
  • 1
  • 1
  • 4
2
votes
1 answer

Setting up a WingIDE environment for python scripting for MCEdit

Brand new to WingIDE and have limited python experience. How can I set up a WingIDE project so I can create MCEDIT filters? https://github.com/mcedit/mcedit
Ryan Leach
  • 4,262
  • 5
  • 34
  • 71
2
votes
3 answers

Making Wing IDE wrap lines on one file

I have one file in my project, (the readme file,) which I would like Wing IDE to display with wrapped lines. Is it possible?
Ram Rachum
  • 84,019
  • 84
  • 236
  • 374
2
votes
0 answers

Wing Python Unit test: Can I fail tests from within tearDownClass?

I have a bunch of methods that need to be tested. I'd like to implement a check to ensure that I've written a test for each method. I'm able to check this in my tearDownClass() if I keep a list of tests run, but I can't figure out a way to fail from…
ForeverWintr
  • 5,492
  • 2
  • 36
  • 65
2
votes
1 answer

how to set run arguments for python when using wing IDE?

how to set run arguments for python when using wing IDE? D:\TEST\djgprj ├─.idea ├─testdjgprj.wpr ├─testdjgprj.wpu └─testdjg ├─.idea ├─testdjg ├─manage.py ├─static └─templates I create a project using wingIDE, and save to folder…
Nick Dong
  • 3,638
  • 8
  • 47
  • 84
2
votes
1 answer

Matlab sytle variable editor in Wing IDE

I'm considering moving from Matlab to Python. I am trying Wing IDE. I found it very convenient but now I'm looking for some functionality like the command Windows and variable browser in Matlab. I know if I start a debug process, I can tweak…
Eric White
  • 21
  • 1
2
votes
1 answer

Restart WingIDE debugger after file change

I'm using django python with wingIDE and every time I make a change I have to restart the debugger and refresh the page. Most of the time I forget to restart my debugger and it takes a second to figure out why my web page didn't change. I was…
Hoopdady
  • 2,296
  • 3
  • 25
  • 40
1
vote
1 answer

Django - pass exception to debugger

Usually, Django outputs a nice HTML traceback page once something goes wrong. This is fine as long as I run the server directly, but now I'm trying to run Django using a Python debugger (Wing IDE in my case). I can set breakpoints and it stops, but…
leoluk
  • 12,561
  • 6
  • 44
  • 51
1
vote
1 answer

Error in wing IDE: no module named "sympy"

I used sublime text till now for python, but today I installed wing personal for python. I installed the module "sympy" both manually and by pip. I worked fine in sublime text, but when I wrote import sympy in the wing ide, it showed this…
user14697742
1
vote
1 answer

How to show project explorer pane on right side of screen

I recently switched to Wing Pro from Visual Studio. Today my Wing IDE opened without the project explorer pane on the right side showing -- it's called project explorer in Visual Studio, I think it's called the same in Wing. It's the listing of…
RTC222
  • 2,025
  • 1
  • 20
  • 53
1
vote
1 answer

WingIDE Debug Message:No debug process

After reading all stack commentary and trial running several other Python IDEs I'd like to use WingIDE for Python but getting stuck on debug process. I want to: 1) test a script of def function module in editor that prompts user for response (ie…
Bill
  • 101
  • 2
  • 4
1
vote
1 answer

cannot load numpy c-extensions

I am trying to install bokey and repeatedly failed. I have broken this down to the following steps: I have created a new and otherwise empty environment conda create -n py37 pip python=3.7 activate py37 and have sucessfully installed bokeh conda…
tfv
  • 6,016
  • 4
  • 36
  • 67